summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-06-18 19:08:11 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-06-18 19:08:11 (GMT)
commit514f9736a712923756cdd1d3a5e845bf3fdb0994 (patch)
tree84d5ff0169a550077b11a8353f68b8bb2e3d4aff /Doc/library
parent56fe4749fb79609de7a6ab83f7d444d271f64e38 (diff)
downloadcpython-514f9736a712923756cdd1d3a5e845bf3fdb0994.zip
cpython-514f9736a712923756cdd1d3a5e845bf3fdb0994.tar.gz
cpython-514f9736a712923756cdd1d3a5e845bf3fdb0994.tar.bz2
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')
-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 f3661d9..db3c827 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)