Throw away the start of the string. Intended to be called with the result of find_good_parse_start().
(self, lo)
| 186 | return pos |
| 187 | |
| 188 | def set_lo(self, lo): |
| 189 | """ Throw away the start of the string. |
| 190 | |
| 191 | Intended to be called with the result of find_good_parse_start(). |
| 192 | """ |
| 193 | assert lo == 0 or self.code[lo-1] == '\n' |
| 194 | if lo > 0: |
| 195 | self.code = self.code[lo:] |
| 196 | |
| 197 | def _study1(self): |
| 198 | """Find the line numbers of non-continuation lines. |
no outgoing calls