summaryrefslogtreecommitdiffstats
path: root/Modules
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 /Modules
parenta42a662fec39e5b34219bbd80bb472da1fe3eb38 (diff)
downloadcpython-3b9be2ae6f5491737ebc65ee525884da218368d4.zip
cpython-3b9be2ae6f5491737ebc65ee525884da218368d4.tar.gz
cpython-3b9be2ae6f5491737ebc65ee525884da218368d4.tar.bz2
Change the ctypes version number to 1.0.0.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_ctypes/_ctypes.c2
1 files changed, 1 insertions, 1 deletions
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));