Comment Re:Not a Python Programmer... (Score 2, Informative) 359
The feeling was that it was unnecessary since metaclasses already provide the functionality that class decorators would have provided.
For those of you who aren't Python programmers: Metaclasses are to classes as classes are to instances. At compile-time (at runtime) the metaclass constructor is given the newly created class object for initialization. This provides the possibility for manipulation and more.