Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror

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.

Slashdot Top Deals

Opportunities are usually disguised as hard work, so most people don't recognize them.

Working...