]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] Fix typos in the `curses.ascii` module documentation (GH-129300) (#151414)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 12 Jun 2026 16:10:27 +0000 (18:10 +0200)
committerGitHub <noreply@github.com>
Fri, 12 Jun 2026 16:10:27 +0000 (16:10 +0000)
(cherry picked from commit f4f102027a9b0edc72a048f17b696aa92d2e6893)

Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
Doc/library/curses.ascii.rst

index 4910954b7784b0d3d6111f3e70c0c7413d16c442..1b72948fe5cf3cd7c3807e5686302bfb5c473ea5 100644 (file)
@@ -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.