Skip to content

Commit b97f477

Browse files
committed
Clarify some comment.
1 parent 5abd6eb commit b97f477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/inspection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def is_eval_safe_name(string):
267267

268268
def is_callable(obj):
269269
if has_instance_type and isinstance(obj, types.InstanceType):
270-
# Work around a Python bug, see issue 7624
270+
# Work around a CPython bug, see CPython issue #7624
271271
return callable(obj)
272272
elif has_collections_callable:
273273
return isinstance(obj, collections.Callable)

0 commit comments

Comments
 (0)