summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2009-02-10 18:59:04 (GMT)
committerThomas Heller <theller@ctypes.org>2009-02-10 18:59:04 (GMT)
commit465c802044a5d9367997b4030e3435722c811911 (patch)
treefba6d088a6e6772703a6bca5d598b9dddcbf76c3 /Misc
parenta06f44b14345fa95c31e1268367418ffaa87030c (diff)
downloadcpython-465c802044a5d9367997b4030e3435722c811911.zip
cpython-465c802044a5d9367997b4030e3435722c811911.tar.gz
cpython-465c802044a5d9367997b4030e3435722c811911.tar.bz2
(The fix has been slightly adjusted.)
Merged revisions 69505 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69505 | thomas.heller | 2009-02-10 19:43:01 +0100 (Di, 10 Feb 2009) | 3 lines Issue#5203: ctypes segfaults when passing a unicode string to a function without argtypes, if HAVE_USABLE_WCHAR_T is false. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 44a893f..185e5cf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -163,6 +163,9 @@ Core and Builtins
Library
-------
+- Issue #5203: Fixed ctypes segfaults when passing a unicode string to a
+ function without argtypes (only occurs if HAVE_USABLE_WCHAR_T is false).
+
- Issue #3386: distutils.sysconfig.get_python_lib prefix argument was ignored
under NT and OS2. Patch by Philip Jenvey.