would it be possible to use one of an object's methods without initializing the object?
In other words, if I have:
class Test:
def __init__(self):
print 'init'
def foo(self):
print 'foo'
and I want to use the foo function without hitting the
initialize constructor function.
Is this possible?
--
http://mail.python.org/mailman/listinfo/python-list
