We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5abd6eb commit b97f477Copy full SHA for b97f477
bpython/inspection.py
@@ -267,7 +267,7 @@ def is_eval_safe_name(string):
267
268
def is_callable(obj):
269
if has_instance_type and isinstance(obj, types.InstanceType):
270
- # Work around a Python bug, see issue 7624
+ # Work around a CPython bug, see CPython issue #7624
271
return callable(obj)
272
elif has_collections_callable:
273
return isinstance(obj, collections.Callable)
0 commit comments