Grant Edwards wrote:No magic in the 'new' module - new.instancemethod is just a synonym for the method type:
Thanks. The stuff provided by the "new" module is what I was missing.
>>> 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