Message151544
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 |
|
| Date |
User |
Action |
Args |
| 2012-01-18 15:47:32 | vpelletier | set | recipients:
+ vpelletier, gvanrossum, facundobatista, dmaurer, amaury.forgeotdarc, pitrou, flub, eric.araujo, meador.inge, jotr, BreamoreBoy, python-dev, eric.snow |
| 2012-01-18 15:47:32 | vpelletier | set | messageid: <[email protected]> |
| 2012-01-18 15:47:31 | vpelletier | link | issue1785 messages |
| 2012-01-18 15:47:31 | vpelletier | create | |
|