Michael Spencer wrote:
Grant Edwards wrote:

Thanks. The stuff provided by the "new" module is what I was missing.

No magic in the 'new' module - new.instancemethod is just a synonym for the method type:

 >>> import new, types
 >>> new.instancemethod is types.MethodType
True

(Assuming you're using Python 2.3 or newer) -- http://mail.python.org/mailman/listinfo/python-list

Reply via email to