[Python-checkins] r53361 - python/trunk/Modules/_ctypes/_ctypes.c
thomas.heller
python-checkins at python.org
Wed Jan 10 21:51:20 CET 2007
Author: thomas.heller
Date: Wed Jan 10 21:51:19 2007
New Revision: 53361
Modified:
python/trunk/Modules/_ctypes/_ctypes.c
Log:
Must change the version number in the _ctypes extension as well.
Modified: python/trunk/Modules/_ctypes/_ctypes.c
==============================================================================
--- python/trunk/Modules/_ctypes/_ctypes.c (original)
+++ python/trunk/Modules/_ctypes/_ctypes.c Wed Jan 10 21:51:19 2007
@@ -4751,7 +4751,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.1.0");
PyModule_AddObject(m, "_memmove_addr", PyLong_FromVoidPtr(memmove));
PyModule_AddObject(m, "_memset_addr", PyLong_FromVoidPtr(memset));
More information about the Python-checkins
mailing list