from warnings import deprecated class Spam: @deprecated("There is enough spam in the world") def __add__(self, other: object) -> object: pass Spam() + 1