(c)
| 54 | def isalnum(c): return isalpha(c) or isdigit(c) |
| 55 | def isalpha(c): return isupper(c) or islower(c) |
| 56 | 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) == 127 |
| 59 | def isdigit(c): return 48 <= _ctoi(c) <= 57 |
nothing calls this directly
no test coverage detected
searching dependent graphs…