Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dzipimport.c1107 PyObject *fixed_source; in normalize_line_endings() local
1132 fixed_source = PyString_FromString(buf); in normalize_line_endings()
1134 return fixed_source; in normalize_line_endings()
1142 PyObject *code, *fixed_source; in compile_source() local
1144 fixed_source = normalize_line_endings(source); in compile_source()
1145 if (fixed_source == NULL) in compile_source()
1148 code = Py_CompileString(PyString_AsString(fixed_source), pathname, in compile_source()
1150 Py_DECREF(fixed_source); in compile_source()