]> granicus.if.org Git - python/commitdiff
Change the ctypes version number to 1.0.0.
authorThomas Heller <theller@ctypes.org>
Tue, 11 Jul 2006 18:40:50 +0000 (18:40 +0000)
committerThomas Heller <theller@ctypes.org>
Tue, 11 Jul 2006 18:40:50 +0000 (18:40 +0000)
Lib/ctypes/__init__.py
Modules/_ctypes/_ctypes.c

index 5da1849725cf8aba4764adf3e637b149b4382a94..4987a7948057661c56c7bd0e5e96dffaa43e0f5e 100644 (file)
@@ -5,7 +5,7 @@
 
 import os as _os, sys as _sys
 
-__version__ = "0.9.9.7"
+__version__ = "1.0.0"
 
 from _ctypes import Union, Structure, Array
 from _ctypes import _Pointer
index b3329321efae241a1cc46a482366c4592304bdbf..dd5c717bb5fe881742e37d99b73a7aa232f0903f 100644 (file)
@@ -4673,7 +4673,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__", "0.9.9.7");
+       PyModule_AddStringConstant(m, "__version__", "1.0.0");
 
        PyModule_AddObject(m, "_memmove_addr", PyLong_FromVoidPtr(memmove));
        PyModule_AddObject(m, "_memset_addr", PyLong_FromVoidPtr(memset));