commit | e48944b69c5c720a9ae5631daa4dbf27e8369371 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Wed Mar 07 14:50:25 2012 -0600 |
committer | Benjamin Peterson <benjamin@python.org> | Wed Mar 07 14:50:25 2012 -0600 |
tree | 9636e80fbb8cd60b66490a18be47b584c386c3ae | |
parent | 30b8e5461d4d913365ae4151616089107ec9cfac [diff] [blame] |
keep the buffer object around while we're using it (closes #14212)
diff --git a/Misc/NEWS b/Misc/NEWS index 250dd81..58c63e8 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -549,6 +549,9 @@ 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.