Searched refs:_ctoi (Results 1 – 1 of 1) sorted by relevance
48 def _ctoi(c): function56 def isascii(c): return 0 <= _ctoi(c) <= 127 # ?57 def isblank(c): return _ctoi(c) in (9, 32)58 def iscntrl(c): return 0 <= _ctoi(c) <= 31 or _ctoi(c) == 12759 def isdigit(c): return 48 <= _ctoi(c) <= 5760 def isgraph(c): return 33 <= _ctoi(c) <= 12661 def islower(c): return 97 <= _ctoi(c) <= 12262 def isprint(c): return 32 <= _ctoi(c) <= 12664 def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32)65 def isupper(c): return 65 <= _ctoi(c) <= 90[all …]