Skip to content

Docs: standardize boolean constants in stdtypes.rst #133325

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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2012,7 +2012,7 @@ expression support in the :mod:`re` module).

.. method:: str.isprintable()

Return true if all characters in the string are printable, false if it
Return ``True`` if all characters in the string are printable, ``False`` if it
contains at least one non-printable character.

Here "printable" means the character is suitable for :func:`repr` to use in
Expand Down
Loading