Comment on Metaprogramming in PythonComments−pdonis3yThe article's reference to "classobj" is wrong for Python 3 (that was the type of old-style classes in Python 2). In Python 3: >>> class SomeClass: ... pass ... >>> type(SomeClass) <class 'type'>−iamcreasy3yThanks for pointing it out
Comments
The article's reference to "classobj" is wrong for Python 3 (that was the type of old-style classes in Python 2). In Python 3:
Thanks for pointing it out