summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2007-01-10 20:51:19 (GMT)
committerThomas Heller <theller@ctypes.org>2007-01-10 20:51:19 (GMT)
commit9ae562efb1f725f12fba521847288332791bf895 (patch)
treec6391ea2327a7babf2ed748018ceb9ab0c876431 /Modules/_ctypes
parentfb9d78733e4ece2911eb8ac8462018b3a2a4b4ff (diff)
downloadcpython-9ae562efb1f725f12fba521847288332791bf895.zip
cpython-9ae562efb1f725f12fba521847288332791bf895.tar.gz
cpython-9ae562efb1f725f12fba521847288332791bf895.tar.bz2
Must change the version number in the _ctypes extension as well.
Diffstat (limited to 'Modules/_ctypes')
-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 8889038..51658ce 100644
--- a/Modules/_ctypes/_ctypes.c
+++ b/Modules/_ctypes/_ctypes.c
@@ -4751,7 +4751,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.1");
+ PyModule_AddStringConstant(m, "__version__", "1.1.0");
PyModule_AddObject(m, "_memmove_addr", PyLong_FromVoidPtr(memmove));
PyModule_AddObject(m, "_memset_addr", PyLong_FromVoidPtr(memset));