| 110 | self.line = line |
| 111 | |
| 112 | class InMultilineStatement: |
| 113 | type = exact_type = IN_MULTILINE_STATEMENT |
| 114 | def __init__(self, pos, line): |
| 115 | self.s = '' |
| 116 | self.start = self.end = pos |
| 117 | self.line = line |
| 118 | |
| 119 | def partial_tokens(s): |
| 120 | """Iterate over tokens from a possibly-incomplete string of code. |