(pos)
| 244 | # otherwise the positional 'Invalid \\uXXXX escape sequence' error. |
| 245 | UNTERMINATED = (-1, 'Unterminated string starting at') |
| 246 | def INVALID(pos): |
| 247 | return (pos, 'Invalid \\uXXXX escape sequence') |
| 248 | |
| 249 | cases = [ |
| 250 | # Not enough room for 4 hex digits after \u. |
nothing calls this directly
no outgoing calls
no test coverage detected