Is there a way to write a metaclass such that all the methods defined in classes based on this metaclass are class methods by default (i.e. without requiring, e.g., @classmethod decorations, etc.)?
Thanks!
Edit: I’m interested in Python 2.7.3. Please pardon the omission.
Something like this (2.7)