summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2006-07-11 18:40:50 (GMT)
committerThomas Heller <theller@ctypes.org>2006-07-11 18:40:50 (GMT)
commit3b9be2ae6f5491737ebc65ee525884da218368d4 (patch)
tree264e1991ed57577cd94757ab0ebdd8d38a0dfd14
parenta42a662fec39e5b34219bbd80bb472da1fe3eb38 (diff)
downloadcpython-3b9be2ae6f5491737ebc65ee525884da218368d4.zip
cpython-3b9be2ae6f5491737ebc65ee525884da218368d4.tar.gz
cpython-3b9be2ae6f5491737ebc65ee525884da218368d4.tar.bz2
Change the ctypes version number to 1.0.0.
-rw-r--r--Lib/ctypes/__init__.py2
-rw-r--r--Modules/_ctypes/_ctypes.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/ctypes/__init__.py b/Lib/ctypes/__init__.py
index 5da1849..4987a79 100644
--- a/Lib/ctypes/__init__.py
+++ b/Lib/ctypes/__init__.py
@@ -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
diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c
index b332932..dd5c717 100644
--- a/Modules/_ctypes/_ctypes.c
+++ b/Modules/_ctypes/_ctypes.c
@@ -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));