[issue8639] Allow callable objects in inspect.getargspec

2011-07-11 Thread Michael Foord
Michael Foord added the comment: Doesn't seem like an unreasonable request. Nick / Benjamin, what do you think? -- ___ Python tracker ___

[issue8639] Allow callable objects in inspect.getargspec

2011-07-09 Thread Eric Snow
Changes by Eric Snow : -- nosy: +ericsnow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue8639] Allow callable objects in inspect.getargspec

2011-07-09 Thread Daniel Urban
Changes by Daniel Urban : -- nosy: +durban ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue8639] Allow callable objects in inspect.getargspec

2011-07-09 Thread Éric Araujo
Changes by Éric Araujo : -- versions: -Python 2.7, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue8639] Allow callable objects in inspect.getargspec

2011-07-09 Thread Éric Araujo
Éric Araujo added the comment: Adding to nosy the developers who last touched inspect. -- nosy: +benjamin.peterson, eric.araujo, michael.foord, ncoghlan ___ Python tracker ___ __

[issue8639] Allow callable objects in inspect.getargspec

2010-09-16 Thread Marco Mariani
Marco Mariani added the comment: I second this, I depend on this monkeypatch for my turbogears projects, where I use callable objects as error handlers: def getargspec(func): if getattr(func, '__call__') and not isfunction(func) and not ismethod(func): func = func.__ca

[issue8639] Allow callable objects in inspect.getargspec

2010-07-11 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue8639] Allow callable objects in inspect.getargspec

2010-05-06 Thread George Sakkis
New submission from George Sakkis : Not sure if this has been brought before but how about extending getargspec to work with callable instances, i.e. make it equivalent to getargspec(obj.__call__) ? -- components: Library (Lib) messages: 105166 nosy: gsakkis priority: normal severity: