(c)
| 46 | ] |
| 47 | |
| 48 | def _ctoi(c): |
| 49 | if isinstance(c, str): |
| 50 | return ord(c) |
| 51 | else: |
| 52 | return c |
| 53 | |
| 54 | def isalnum(c): return isalpha(c) or isdigit(c) |
| 55 | def isalpha(c): return isupper(c) or islower(c) |
no outgoing calls
no test coverage detected
searching dependent graphs…