(c: str)
| 188 | |
| 189 | # Look for characters that require quotation. |
| 190 | def is_alpha(c: str) -> bool: |
| 191 | return ord(c) >= ord("a") and ord(c) <= ord("z") or c == "_" |
| 192 | |
| 193 | def is_alphanum(c: str) -> bool: |
| 194 | return is_alpha(c) or ord(c) >= ord("0") and ord(c) <= ord("9") |
no outgoing calls
no test coverage detected