Vincent Pelletier <[email protected]> added the comment: This change causes the following behaviour:
>>> import inspect >>> class B(object): ... def f(self): ... pass ... >>> inspect.getmembers(B, inspect.ismethod) [] While I would expect the result to contain f: >>> inspect.ismethod(B.f) True Isn't this a regression ? Regards, Vincent Pelletier ---------- nosy: +vpelletier _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue1785> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
