From 7a8a61f9bbbfb2eb9db4582c16b8cde1fcb9e6b6 Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Fri, 12 Jun 2026 13:02:33 -0300 Subject: [PATCH] Fix typos in the `curses.ascii` module documentation (GH-129300) (cherry picked from commit f4f102027a9b0edc72a048f17b696aa92d2e6893) Co-authored-by: Rafael Fontenelle Co-authored-by: Stan Ulbrych --- Doc/library/curses.ascii.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/curses.ascii.rst b/Doc/library/curses.ascii.rst index 9ae82c14465538..8f8e3ddda8ef52 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.