-
Notifications
You must be signed in to change notification settings - Fork 50
Decorators from deco cannot be used on class methods #54
Description
Hey,
I know this because, well, it's not implemented.
However since standalone methods are objects in python just as class methods are, what are the main sticking point preventing that from being usable on class methods? Could we get some sort of "what needs to happen" for that to be possible?
I would see a real use for that on class methods. Say you have a DataObject that contains a Gig of data in numpy arrays or something. Maybe that object also defines operations that can be perform on its data. It would be great from a software architecture perspective to keep the object-oriented code and those methods in the class definition, but still be able to parallele process it like you allow it to be done on standalone methods.
Am I am making sense?