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

This commit is contained in:
Tim Peters 2000-08-27 20:18:17 +00:00
parent e753ef8d1b
commit e868211e10
1 changed files with 1 additions and 1 deletions

View File

@ -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 *