(ch: int)
| 5 | |
| 6 | |
| 7 | def isLetter(ch: int) -> bool: |
| 8 | lc = ch | 0x20 # to lower case |
| 9 | # /* a */ and /* z */ |
| 10 | return (lc >= 0x61) and (lc <= 0x7A) |
| 11 | |
| 12 | |
| 13 | def html_inline(state: StateInline, silent: bool) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…