[Python-checkins] python/dist/src/Python pythonrun.c,2.173,2.174

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Mon, 30 Dec 2002 19:42:15 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1:/tmp/cvs-serv17264/Python

Modified Files:
	pythonrun.c 
Log Message:
Since the *_Init() are private, prefix with _, suggested by Skip

Index: pythonrun.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/pythonrun.c,v
retrieving revision 2.173
retrieving revision 2.174
diff -C2 -d -r2.173 -r2.174
*** pythonrun.c	30 Dec 2002 22:29:22 -0000	2.173
--- pythonrun.c	31 Dec 2002 03:42:12 -0000	2.174
***************
*** 125,132 ****
  	_Py_ReadyTypes();
  
! 	if (!PyFrame_Init())
  		Py_FatalError("Py_Initialize: can't init frames");
  
! 	if (!PyInt_Init())
  		Py_FatalError("Py_Initialize: can't init ints");
  
--- 125,132 ----
  	_Py_ReadyTypes();
  
! 	if (!_PyFrame_Init())
  		Py_FatalError("Py_Initialize: can't init frames");
  
! 	if (!_PyInt_Init())
  		Py_FatalError("Py_Initialize: can't init ints");