Change ctypes version number to 1.0.3 (when Python 2.5.2 is released,
authorThomas Heller <theller@ctypes.org>
Wed, 19 Dec 2007 17:22:34 +0000 (17:22 +0000)
committerThomas Heller <theller@ctypes.org>
Wed, 19 Dec 2007 17:22:34 +0000 (17:22 +0000)
ctypes 1.0.3 will be also be released).

Lib/ctypes/__init__.py
Modules/_ctypes/_ctypes.c

index 7b5f7482e60052c466a7fde256a449f167689a93..ef90bc7b87868826a546790696a715d669b07a78 100644 (file)
@@ -5,7 +5,7 @@
 
 import os as _os, sys as _sys
 
-__version__ = "1.0.2"
+__version__ = "1.0.3"
 
 from _ctypes import Union, Structure, Array
 from _ctypes import _Pointer
index fa0552c6eeec5634b0f487f6f4c55a7fbf0a18ec..73b5cbdc2e9e26761e7ed8786f3c260ec7ae411e 100644 (file)
@@ -4765,7 +4765,7 @@ init_ctypes(void)
 #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.2");
+       PyModule_AddStringConstant(m, "__version__", "1.0.3");
 
        PyModule_AddObject(m, "_memmove_addr", PyLong_FromVoidPtr(memmove));
        PyModule_AddObject(m, "_memset_addr", PyLong_FromVoidPtr(memset));