[Python-Dev] Class decorators
Greg Ewing
greg.ewing at canterbury.ac.nz
Sun Mar 26 14:39:07 CEST 2006
More information about the Python-Dev mailing list
Sun Mar 26 14:39:07 CEST 2006
- Previous message: [Python-Dev] Prevalence of low-level memory abuse?
- Next message: [Python-Dev] Class decorators
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I've just been playing around with metaclasses, and I think I've stumbled across a reason for having class decorators as an alternative to metaclasses for some purposes. The metaclass I wrote was for the purpose of adding a class to a registry, the reason for which isn't important here. It worked, but I was surprised to find that it not only registered the classes that I made it the metaclass of, but all subclasses of those classes as well. I'm not sure whether that's really the behaviour I want, and I can imagine some cases in which it's definitely not what I'd want. The general principle brought out here is that when you use a metaclass, it gets inherited by subclasses, but if we had class decorators, they would only affect to the classes that you explicitly applied them to. I think there are uses for both behaviours. Greg
- Previous message: [Python-Dev] Prevalence of low-level memory abuse?
- Next message: [Python-Dev] Class decorators
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-Dev mailing list