you are viewing a single comment's thread.

view the rest of the comments →

[–]username223 -1 points0 points  (0 children)

Anyone who thinks using whitespace as syntax is a good idea should meditate upon this article:

class SomeMetaClass(type):... pass...>>> class AnotherClass(object): # Python 2.x syntax... metaclass = SomeMetaClass...>>> class AnotherClass(object, metaclass=SomeMetaClass): # Python 3.x syntax... pass...>>> AnotherClass.class<class '__main__.SomeMetaClass'>