https://github.com/python/cpython/commit/945a1ac7a4104f15103338fb73c293a8f5dba803 commit: 945a1ac7a4104f15103338fb73c293a8f5dba803 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: StanFromIreland <[email protected]> date: 2026-06-12T16:10:27Z summary:
[3.14] Fix typos in the `curses.ascii` module documentation (GH-129300) (#151414) (cherry picked from commit f4f102027a9b0edc72a048f17b696aa92d2e6893) Co-authored-by: Rafael Fontenelle <[email protected]> Co-authored-by: Stan Ulbrych <[email protected]> files: M Doc/library/curses.ascii.rst diff --git a/Doc/library/curses.ascii.rst b/Doc/library/curses.ascii.rst index 4910954b7784b0..1b72948fe5cf3c 100644 --- a/Doc/library/curses.ascii.rst +++ b/Doc/library/curses.ascii.rst @@ -133,7 +133,7 @@ C library: .. function:: isgraph(c) - Checks for ASCII any printable character except space. + Checks for any ASCII printable character except space. .. function:: islower(c) @@ -148,7 +148,7 @@ C library: .. function:: ispunct(c) - Checks for any printable ASCII character which is not a space or an alphanumeric + Checks for any ASCII printable character which is not a space or an alphanumeric character. _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
