Change ctypes version number to 1.0.3 (when Python 2.5.2 is released,

ctypes 1.0.3 will be also be released).
This commit is contained in:
Thomas Heller 2007-12-19 17:22:34 +00:00
parent c2b0d17b31
commit 4f1cbd27b4
2 changed files with 2 additions and 2 deletions

View 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

View 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));