Check if character code is a whitespace.
(code: int | None)
| 160 | |
| 161 | |
| 162 | def isSpace(code: int | None) -> bool: |
| 163 | """Check if character code is a whitespace.""" |
| 164 | return code in (0x09, 0x20) |
| 165 | |
| 166 | |
| 167 | def isStrSpace(ch: str | None) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…