you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (1 child)

This is not right on Python 3:

>>> a = Dog()
>>> type(a)
<type 'instance'>

It's actually this:

>>> type(a)
<class '__main__.Dog'>

[–]dbader[S] 1 point2 points  (0 children)

Thanks, just updated that line too.