Home | History | Annotate | Download | only in Modules

Lines Matching refs:fixed_source

1109 fixed_source;
1134 fixed_source = PyString_FromString(buf);
1136 return fixed_source;
1144 PyObject *code, *fixed_source;
1146 fixed_source = normalize_line_endings(source);
1147 if (fixed_source == NULL)
1150 code = Py_CompileString(PyString_AsString(fixed_source), pathname,
1152 Py_DECREF(fixed_source);