Lines Matching refs:fixed_source
1324 PyObject *fixed_source;
1353 fixed_source = PyBytes_FromStringAndSize(buf, len + 2);
1355 return fixed_source;
1363 PyObject *code, *fixed_source;
1365 fixed_source = normalize_line_endings(source);
1366 if (fixed_source == NULL) {
1370 code = Py_CompileStringObject(PyBytes_AsString(fixed_source),
1373 Py_DECREF(fixed_source);