[Python-checkins] r45507 - python/trunk/Python/modsupport.c

skip.montanaro python-checkins at python.org
Tue Apr 18 02:53:48 CEST 2006


Author: skip.montanaro
Date: Tue Apr 18 02:53:48 2006
New Revision: 45507

Modified:
   python/trunk/Python/modsupport.c
Log:
C++ compiler cleanup: migrate to modsupport.h

Modified: python/trunk/Python/modsupport.c
==============================================================================
--- python/trunk/Python/modsupport.c	(original)
+++ python/trunk/Python/modsupport.c	Tue Apr 18 02:53:48 2006
@@ -7,9 +7,6 @@
 typedef double va_double;
 
 static PyObject *va_build_value(const char *, va_list, int);
-#ifdef HAVE_DECLSPEC_DLL
-PyAPI_FUNC(PyObject *) _Py_BuildValue_SizeT(const char *, ...);
-#endif
 
 /* Package context -- the full module name for package imports */
 char *_Py_PackageContext = NULL;


More information about the Python-checkins mailing list