Hacker News new | ask | show | jobs
by pdonis 1373 days ago
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:

    >>> class SomeClass:
    ...     pass
    ...
    >>> type(SomeClass)
    <class 'type'>
1 comments

Thanks for pointing it out