Searched defs:parsestr (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython2/Lib/email/
H A Dparser.py75 def parsestr(self, text, headersonly=False):
92 def parsestr(self, text, headersonly=True):
93 return Parser.parsestr(self, text, True)
74 def parsestr(self, text, headersonly=False): member in class:Parser
90 def parsestr(self, text, headersonly=True): member in class:HeaderParser
/external/python/cpython3/Lib/email/
H A Dparser.py61 def parsestr(self, text, headersonly=False):
78 def parsestr(self, text, headersonly=True):
79 return Parser.parsestr(self, text, True)
127 return self.parser.parsestr(text, headersonly)
60 def parsestr(self, text, headersonly=False): member in class:Parser
76 def parsestr(self, text, headersonly=True): member in class:HeaderParser
/external/python/cpython2/Python/
H A Dast.c40 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) function
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)));
/external/python/cpython3/Python/
H A Dast.c5019 escape sequences (if any). parsestr parses it, and sets *result to
5025 parsestr(struct compiling *c, const node *n, int *bytesmode, int *rawmode, function
5152 if (parsestr(c, CHILD(n, i), &this_bytesmode, &this_rawmode, &s,

Completed in 346 milliseconds