(c)
| 66 | def isxdigit(c): return isdigit(c) or \ |
| 67 | (65 <= _ctoi(c) <= 70) or (97 <= _ctoi(c) <= 102) |
| 68 | def isctrl(c): return 0 <= _ctoi(c) < 32 |
| 69 | def ismeta(c): return _ctoi(c) > 127 |
| 70 | |
| 71 | def ascii(c): |
nothing calls this directly
no test coverage detected
searching dependent graphs…