G
gangesmaster
just something i thought looked nice and wanted to share with the rest
of you:
.... def __metaclass__(name, bases, dict):
.... print "hello"
.... return type(name, bases, dict)
....
hello
instead of defining a separate metaclass function/class, you can do
it inline. isn't that cool?
-tomer
of you:
.... def __metaclass__(name, bases, dict):
.... print "hello"
.... return type(name, bases, dict)
....
hello
instead of defining a separate metaclass function/class, you can do
it inline. isn't that cool?
-tomer