(self, inp)
| 1311 | return insert_quotes(s, self.quotes_map) |
| 1312 | |
| 1313 | def parse(self, inp): |
| 1314 | self.original = inp |
| 1315 | unquoted, self.quotes_map = eliminate_quotes(inp) |
| 1316 | return self.process(unquoted) |
| 1317 | |
| 1318 | def process(self, s, context='expr'): |
| 1319 | """Parse string within the given context. |
nothing calls this directly
no test coverage detected