[Python-checkins] r53360 - python/branches/release25-maint/Modules/_ctypes/_ctypes.c

thomas.heller python-checkins at python.org
Wed Jan 10 21:44:21 CET 2007


Author: thomas.heller
Date: Wed Jan 10 21:44:21 2007
New Revision: 53360

Modified:
   python/branches/release25-maint/Modules/_ctypes/_ctypes.c
Log:
Must update the version number on the extension module as well.

Modified: python/branches/release25-maint/Modules/_ctypes/_ctypes.c
==============================================================================
--- python/branches/release25-maint/Modules/_ctypes/_ctypes.c	(original)
+++ python/branches/release25-maint/Modules/_ctypes/_ctypes.c	Wed Jan 10 21:44:21 2007
@@ -4744,7 +4744,7 @@
 #endif
 	PyModule_AddObject(m, "FUNCFLAG_CDECL", PyInt_FromLong(FUNCFLAG_CDECL));
 	PyModule_AddObject(m, "FUNCFLAG_PYTHONAPI", PyInt_FromLong(FUNCFLAG_PYTHONAPI));
-	PyModule_AddStringConstant(m, "__version__", "1.0.1");
+	PyModule_AddStringConstant(m, "__version__", "1.0.2");
 
 	PyModule_AddObject(m, "_memmove_addr", PyLong_FromVoidPtr(memmove));
 	PyModule_AddObject(m, "_memset_addr", PyLong_FromVoidPtr(memset));


More information about the Python-checkins mailing list