[Python-checkins] CVS: python/dist/src/Python pythonrun.c,2.110,2.111

Tim Peters python-dev@python.org
Sun, 27 Aug 2000 13:18:20 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory slayer.i.sourceforge.net:/tmp/cvs-serv9282/python/dist/src/python

Modified Files:
	pythonrun.c 
Log Message:
Hard to believe Guido compiled this!  Function lacked a return stmt.


Index: pythonrun.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/pythonrun.c,v
retrieving revision 2.110
retrieving revision 2.111
diff -C2 -r2.110 -r2.111
*** pythonrun.c	2000/08/27 19:20:31	2.110
--- pythonrun.c	2000/08/27 20:18:17	2.111
***************
*** 863,867 ****
  	   PyObject *locals)
  {
! 	PyRun_FileEx(fp, filename, start, globals, locals, 0);
  }
  
--- 863,867 ----
  	   PyObject *locals)
  {
! 	return PyRun_FileEx(fp, filename, start, globals, locals, 0);
  }