(s, t)
| 50 | |
| 51 | |
| 52 | def _handle_word(s, t): |
| 53 | if t.startswith('.'): |
| 54 | return '.', t[1:] |
| 55 | if t.startswith('#'): |
| 56 | return 'id', t[1:] |
| 57 | return t, t |
| 58 | |
| 59 | |
| 60 | _scanner = re.Scanner([ |
nothing calls this directly
no outgoing calls
no test coverage detected