From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 12 Jun 2026 16:09:38 +0000 (+0200) Subject: [3.13] Fix typos in the `curses.ascii` module documentation (GH-129300) (#151415) X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=a1d247f3578e4a48562234a66cc8058929c413fa;p=thirdparty%2FPython%2Fcpython.git [3.13] Fix typos in the `curses.ascii` module documentation (GH-129300) (#151415) (cherry picked from commit f4f102027a9b0edc72a048f17b696aa92d2e6893) Co-authored-by: Rafael Fontenelle Co-authored-by: Stan Ulbrych --- diff --git a/Doc/library/curses.ascii.rst b/Doc/library/curses.ascii.rst index cb895664ff1b..c1ef39bb318a 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.