summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2007-07-13 17:12:23 (GMT)
committerThomas Heller <theller@ctypes.org>2007-07-13 17:12:23 (GMT)
commitfa704c6adef703271844349bad94fbf7d09143d9 (patch)
tree89f2d504b9c3a9a5f852e3808a871ee1f2539b63 /Misc
parentad0cfe3dd7df3b58486e51ab881ddfe1d71d90ba (diff)
downloadcpython-fa704c6adef703271844349bad94fbf7d09143d9.zip
cpython-fa704c6adef703271844349bad94fbf7d09143d9.tar.gz
cpython-fa704c6adef703271844349bad94fbf7d09143d9.tar.bz2
Fix for SF# 1701409: segfault in c_char_p of ctypes. The repr output
of c_char_p and c_wchar_p has changed as a sideeffect.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b5cf349..aa02388 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -234,6 +234,10 @@ Core and builtins
Library
-------
+- Bug #1701409: Fix a segfault in printing ctypes.c_char_p and
+ ctypes.c_wchar_p when they point to an invalid location. As a
+ sideeffect the representation of these instances has changed.
+
- tarfile.py: Added "exclude" keyword argument to TarFile.add().
- Bug #1734723: Fix repr.Repr() so it doesn't ignore the maxtuple attribute.