[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
- Previous message: [Python-checkins] python/dist/src/Include import.h,2.28,2.29 object.h,2.108,2.109 pydebug.h,2.20,2.21 pyport.h,2.52,2.53 pythonrun.h,2.50,2.51
- Next message: [Python-checkins] python/dist/src/Lib/encodings __init__.py,1.6.12.1,1.6.12.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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.
- Previous message: [Python-checkins] python/dist/src/Include import.h,2.28,2.29 object.h,2.108,2.109 pydebug.h,2.20,2.21 pyport.h,2.52,2.53 pythonrun.h,2.50,2.51
- Next message: [Python-checkins] python/dist/src/Lib/encodings __init__.py,1.6.12.1,1.6.12.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]