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