[Python-checkins] python/dist/src/Include pyerrors.h,2.64,2.65 stringobject.h,2.38,2.39

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Tue, 01 Jul 2003 13:15:23 -0700


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

Modified Files:
	pyerrors.h stringobject.h 
Log Message:
Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros


Index: pyerrors.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pyerrors.h,v
retrieving revision 2.64
retrieving revision 2.65
diff -C2 -d -r2.64 -r2.65
*** pyerrors.h	11 Dec 2002 14:04:57 -0000	2.64
--- pyerrors.h	1 Jul 2003 20:15:21 -0000	2.65
***************
*** 64,68 ****
  #endif
  #ifdef __VMS
! extern DL_IMPORT(PyObject *) PyExc_VMSError;
  #endif
  
--- 64,68 ----
  #endif
  #ifdef __VMS
! PyAPI_DATA(PyObject *) PyExc_VMSError;
  #endif
  

Index: stringobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/stringobject.h,v
retrieving revision 2.38
retrieving revision 2.39
diff -C2 -d -r2.38 -r2.39
*** stringobject.h	15 Sep 2002 14:09:46 -0000	2.38
--- stringobject.h	1 Jul 2003 20:15:21 -0000	2.39
***************
*** 66,70 ****
  PyAPI_FUNC(PyObject *) _PyString_FormatLong(PyObject*, int, int,
  						  int, char**, int*);
! extern DL_IMPORT(PyObject *) PyString_DecodeEscape(const char *, int, 
  						   const char *, int,
  						   const char *);
--- 66,70 ----
  PyAPI_FUNC(PyObject *) _PyString_FormatLong(PyObject*, int, int,
  						  int, char**, int*);
! PyAPI_FUNC(PyObject *) PyString_DecodeEscape(const char *, int, 
  						   const char *, int,
  						   const char *);