Home | History | Annotate | Download | only in Python

Lines Matching defs:parsestr

40 static PyObject *parsestr(struct compiling *, const node *n, const char *);
3456 * parsestr parses it, and returns the decoded Python string object.
3459 parsestr(struct compiling *c, const node *n, const char *s)
3549 * compile-time literal catenation, calling parsestr() on each piece, and
3558 if ((v = parsestr(c, n, STR(CHILD(n, 0)))) != NULL) {
3562 s = parsestr(c, n, STR(CHILD(n, i)));