Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6bf858 commit 0cc87f3Copy full SHA for 0cc87f3
1 file changed
Lib/curses/ascii.py
@@ -61,7 +61,7 @@ def isgraph(c): return _ctoi(c) >= 33 and _ctoi(c) <= 126
61
def islower(c): return _ctoi(c) >= 97 and _ctoi(c) <= 122
62
def isprint(c): return _ctoi(c) >= 32 and _ctoi(c) <= 126
63
def ispunct(c): return _ctoi(c) != 32 and not isalnum(c)
64
-def isspace(c): return _ctoi(c) in (12, 10, 13, 9, 11)
+def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32)
65
def isupper(c): return _ctoi(c) >= 65 and _ctoi(c) <= 90
66
def isxdigit(c): return isdigit(c) or \
67
(_ctoi(c) >= 65 and _ctoi(c) <= 70) or (_ctoi(c) >= 97 and _ctoi(c) <= 102)
0 commit comments