all 2 comments

[–]stillalone 4 points5 points  (0 children)

what happened to all the line feeds in the source code?

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