Issue #27294: Numerical state in the repr for Tkinter event objects is now

represented as a compination of known flags.
This commit is contained in:
Serhiy Storchaka 2016-06-18 22:08:11 +03:00
parent 56fe4749fb
commit 514f9736a7
4 changed files with 61 additions and 5 deletions

View file

@ -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)