()
| 199 | currentToken = '' |
| 200 | |
| 201 | def verifyErrors(): |
| 202 | if squareLvl not in (0, 1): |
| 203 | raise RegexTokenizationError('Square braces level is {}'.format(squareLvl)) |
| 204 | if roundLvl < 0: |
| 205 | raise RegexTokenizationError('Round braces level is {}'.format(roundLvl)) |
| 206 | |
| 207 | try: |
| 208 | for char in request: |
nothing calls this directly
no test coverage detected