summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-07 20:50:25 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-07 20:50:25 (GMT)
commite48944b69c5c720a9ae5631daa4dbf27e8369371 (patch)
tree9636e80fbb8cd60b66490a18be47b584c386c3ae /Misc
parent30b8e5461d4d913365ae4151616089107ec9cfac (diff)
downloadcpython-e48944b69c5c720a9ae5631daa4dbf27e8369371.zip
cpython-e48944b69c5c720a9ae5631daa4dbf27e8369371.tar.gz
cpython-e48944b69c5c720a9ae5631daa4dbf27e8369371.tar.bz2
keep the buffer object around while we're using it (closes #14212)
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 250dd81..58c63e8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -549,6 +549,9 @@ Tests
Extension Modules
-----------------
+- Issue #14212: The re module didn't retain a reference to buffers it was
+ scanning, resulting in segfaults.
+
- Issue #13840: The error message produced by ctypes.create_string_buffer
when given a Unicode string has been fixed.