summaryrefslogtreecommitdiff
path: root/Doc/library/curses.ascii.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-06-18 22:08:11 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-06-18 22:08:11 +0300
commit514f9736a712923756cdd1d3a5e845bf3fdb0994 (patch)
tree84d5ff0169a550077b11a8353f68b8bb2e3d4aff /Doc/library/curses.ascii.rst
parent56fe4749fb79609de7a6ab83f7d444d271f64e38 (diff)
downloadcpython-git-514f9736a712923756cdd1d3a5e845bf3fdb0994.tar.gz
Issue #27294: Numerical state in the repr for Tkinter event objects is now
represented as a compination of known flags.
Diffstat (limited to 'Doc/library/curses.ascii.rst')
-rw-r--r--Doc/library/curses.ascii.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/curses.ascii.rst b/Doc/library/curses.ascii.rst
index f3661d9bc5..db3c827406 100644
--- a/Doc/library/curses.ascii.rst
+++ b/Doc/library/curses.ascii.rst
@@ -115,12 +115,12 @@ C library:
.. function:: isblank(c)
- Checks for an ASCII whitespace character.
+ Checks for an ASCII whitespace character; space or horizontal tab.
.. function:: iscntrl(c)
- Checks for an ASCII control character (in the range 0x00 to 0x1f).
+ Checks for an ASCII control character (in the range 0x00 to 0x1f or 0x7f).
.. function:: isdigit(c)