summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2007-12-19 17:22:34 (GMT)
committerThomas Heller <theller@ctypes.org>2007-12-19 17:22:34 (GMT)
commit4f1cbd27b4355446b3edaaf1082b16715f197499 (patch)
tree326ea691413f6760b2e46350bd3dc5c10d98704d /Modules
parentc2b0d17b314157a52b66bb082c58d39f4434571c (diff)
downloadcpython-4f1cbd27b4355446b3edaaf1082b16715f197499.zip
cpython-4f1cbd27b4355446b3edaaf1082b16715f197499.tar.gz
cpython-4f1cbd27b4355446b3edaaf1082b16715f197499.tar.bz2
Change ctypes version number to 1.0.3 (when Python 2.5.2 is released,
ctypes 1.0.3 will be also be released).
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 fa0552c..73b5cbd 100644
--- a/Modules/_ctypes/_ctypes.c
+++ b/Modules/_ctypes/_ctypes.c
@@ -4765,7 +4765,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.2");
+ PyModule_AddStringConstant(m, "__version__", "1.0.3");
PyModule_AddObject(m, "_memmove_addr", PyLong_FromVoidPtr(memmove));
PyModule_AddObject(m, "_memset_addr", PyLong_FromVoidPtr(memset));