This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author larry
Recipients larry, yselivanov
Date 2014-02-21.01:19:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392945586.96.0.797819673401.issue20712@psf.upfronthosting.co.za>
In-reply-to
Content
Some of the methods on the inspect module behave differently depending on whether the callable passed in was implemented in C or in Python.  For example, ismethod() only returns True for bound methods implemented in Python.

I assert that the interface presented by inspect should be agnostic about the underlying implementation.  So for example ismethod() should return True for bound methods on builtin classes.
History
Date User Action Args
2014-02-21 01:19:47larrysetrecipients: + larry, yselivanov
2014-02-21 01:19:46larrysetmessageid: <1392945586.96.0.797819673401.issue20712@psf.upfronthosting.co.za>
2014-02-21 01:19:46larrylinkissue20712 messages
2014-02-21 01:19:46larrycreate