From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 12 Jun 2026 16:11:06 +0000 (+0200) Subject: [3.15] Fix typos in the `curses.ascii` module documentation (GH-129300) (#151413) X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=04973e705b936fbda6a0d3691957c07ca1880cba;p=thirdparty%2FPython%2Fcpython.git [3.15] Fix typos in the `curses.ascii` module documentation (GH-129300) (#151413) (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 9ae82c144655..8f8e3ddda8ef 100644 --- a/Doc/library/curses.ascii.rst +++ b/Doc/library/curses.ascii.rst @@ -130,7 +130,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) @@ -145,7 +145,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.