summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2007-01-10 20:51:19 +0000
committerThomas Heller <theller@ctypes.org>2007-01-10 20:51:19 +0000
commit9ae562efb1f725f12fba521847288332791bf895 (patch)
treec6391ea2327a7babf2ed748018ceb9ab0c876431
parentfb9d78733e4ece2911eb8ac8462018b3a2a4b4ff (diff)
downloadcpython-git-9ae562efb1f725f12fba521847288332791bf895.tar.gz
Must change the version number in the _ctypes extension as well.
-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 8889038d86..51658ced6e 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));