[Python-checkins] python/dist/src/Include pythonrun.h,2.59,2.60 intobject.h,2.28,2.29

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Wed, 01 Jan 2003 07:18:35 -0800


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

Modified Files:
	pythonrun.h intobject.h 
Log Message:
Move _PyInt_Init() into pythonrun.h, since all the other _Init()
functions are here.  Suggested by Skip.


Index: pythonrun.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pythonrun.h,v
retrieving revision 2.59
retrieving revision 2.60
diff -C2 -d -r2.59 -r2.60
*** pythonrun.h	31 Dec 2002 03:42:12 -0000	2.59
--- pythonrun.h	1 Jan 2003 15:18:32 -0000	2.60
***************
*** 102,105 ****
--- 102,106 ----
  PyAPI_FUNC(void) _PyImportHooks_Init(void);
  PyAPI_FUNC(int) _PyFrame_Init(void);
+ PyAPI_FUNC(int) _PyInt_Init(void);
  
  /* Various internal finalizers */

Index: intobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/intobject.h,v
retrieving revision 2.28
retrieving revision 2.29
diff -C2 -d -r2.28 -r2.29
*** intobject.h	31 Dec 2002 03:42:12 -0000	2.28
--- intobject.h	1 Jan 2003 15:18:32 -0000	2.29
***************
*** 31,35 ****
  #define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type)
  
- PyAPI_FUNC(int) _PyInt_Init(void);
  PyAPI_FUNC(PyObject *) PyInt_FromString(char*, char**, int);
  #ifdef Py_USING_UNICODE
--- 31,34 ----