[Python-checkins] python/dist/src/Objects object.c,2.186,2.187

mhammond@users.sourceforge.net mhammond@users.sourceforge.net
Mon, 29 Jul 2002 06:42:46 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv1122/Objects

Modified Files:
	object.c 
Log Message:
Excise DL_IMPORT/EXPORT from object.h, and related files.  This patch
also adds 'extern' to PyAPI_DATA rather than at each declaration, as 
discussed with Tim and Guido.


Index: object.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v
retrieving revision 2.186
retrieving revision 2.187
diff -C2 -d -r2.186 -r2.187
*** object.c	11 Jul 2002 06:23:50 -0000	2.186
--- object.c	29 Jul 2002 13:42:08 -0000	2.187
***************
*** 9,16 ****
  
  #ifdef Py_REF_DEBUG
! DL_IMPORT(long) _Py_RefTotal;
  #endif
  
! DL_IMPORT(int) Py_DivisionWarningFlag;
  
  /* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.
--- 9,16 ----
  
  #ifdef Py_REF_DEBUG
! long _Py_RefTotal;
  #endif
  
! int Py_DivisionWarningFlag;
  
  /* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.