]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Fix typos in the `curses.ascii` module documentation (GH-129300) (#151415)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 12 Jun 2026 16:09:38 +0000 (18:09 +0200)
committerGitHub <noreply@github.com>
Fri, 12 Jun 2026 16:09:38 +0000 (16:09 +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 cb895664ff1b11c8467d26e082e00812bac61845..c1ef39bb318a0f2d3758a865f3e7756557e5ea8f 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.