Home
last modified time | relevance | path

Searched refs:PyString_DecodeEscape (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Dbytesobject.h24 #define PyBytes_DecodeEscape PyString_DecodeEscape
Dstringobject.h78 PyAPI_FUNC(PyObject *) PyString_DecodeEscape(const char *, Py_ssize_t,
/external/python/cpython2/PC/os2emx/
Dpython27.def537 "PyString_DecodeEscape"
/external/python/cpython2/Modules/
D_codecsmodule.c171 return codec_tuple(PyString_DecodeEscape(data, size, errors, 0, NULL), in escape_decode()
DcPickle.c3693 str = PyString_DecodeEscape(p, len, NULL, 0, NULL); in load_string()
/external/python/cpython2/Misc/NEWS.d/
D2.7.15rc1.rst260 Fixed possible integer overflow in PyString_DecodeEscape. Patch by Jay
/external/python/cpython2/Python/
Dast.c3546 return PyString_DecodeEscape(s, len, NULL, unicode, in parsestr()
/external/python/cpython2/Objects/
Dstringobject.c605 PyObject *PyString_DecodeEscape(const char *s, in PyString_DecodeEscape() function