Y
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
iamcreasy
1372 days ago
Thanks for pointing it out
link