8000 Clean up comma usage in Doc/library/functions.rst by Adminixtrator · Pull Request #27083 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Clean up comma usage in Doc/library/functions.rst #27083

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Jul 19, 2021
Prev Previous commit
Next Next commit
Update functions.rst
  • Loading branch information
Adminixtrator authored Jul 18, 2021
commit 9cc2cd6f491d1f569db03ce1afa1567b7d61062a
2 changes: 1 addition & 1 deletion Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ are always available. They are listed here in alphabetical order.

Return :const:`True` if the *object* argument appears callable,
:const:`False` if not. If this returns ``True``, it is still possible that a
call fails, but if it is ``False``, the calling *object* will never succeed.
call fails, but if it is ``False``, calling *object* will never succeed.
Note that classes are callable (calling a class returns a new instance);
instances are callable if their class has a :meth:`__call__` method.

Expand Down
0