Kaydet (Commit) e868211e authored tarafından Tim Peters's avatar Tim Peters

Hard to believe Guido compiled this! Function lacked a return stmt.

üst e753ef8d
...@@ -862,7 +862,7 @@ PyObject * ...@@ -862,7 +862,7 @@ PyObject *
PyRun_File(FILE *fp, char *filename, int start, PyObject *globals, PyRun_File(FILE *fp, char *filename, int start, PyObject *globals,
PyObject *locals) PyObject *locals)
{ {
PyRun_FileEx(fp, filename, start, globals, locals, 0); return PyRun_FileEx(fp, filename, start, globals, locals, 0);
} }
PyObject * PyObject *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment