[issue7945] typo in operator.isCallable deprecation warning

2010-02-16 Thread Georg Brandl
Georg Brandl added the comment: No, this is correct. isCallable() was deprecated since 2.0, but the replacement was the builtin callable() until 2.6. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue7945] typo in operator.isCallable deprecation warning

2010-02-16 Thread kenneth dombrowski
New submission from kenneth dombrowski : The operator documentation @ http://docs.python.org/library/operator.html states for operator.isCallable(obj): "Deprecated since version 2.0: Use isinstance(x, collections.Callable) instead.", I believe this should read since version 2.6 kenn...@dev2 ~