Commit ae3d5d0b authored by Tim Peters's avatar Tim Peters

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

parent 70c1c120
......@@ -862,7 +862,7 @@ PyObject *
PyRun_File(FILE *fp, char *filename, int start, PyObject *globals,
PyObject *locals)
{
PyRun_FileEx(fp, filename, start, globals, locals, 0);
return PyRun_FileEx(fp, filename, start, globals, locals, 0);
}
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