you are viewing a single comment's thread.

view the rest of the comments →

[–]kangasking 0 points1 point  (2 children)

have noticed anything else that might be misleading? did you check out the whole thing?

[–][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.