summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-13 22:14:53 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-11-13 22:14:53 +0000
commitceaabc100c6d2dc05a559520b5be27f9c021dc13 (patch)
treecc77faafc5ad3c108464a984834cbbcc99bd45ce /Misc
parent84fdc4958f7a89976bccaf42e1d876777fa00831 (diff)
parent75559affad77d929ab8a87da226f080ec7b59dbd (diff)
downloadcpython-git-ceaabc100c6d2dc05a559520b5be27f9c021dc13.tar.gz
Issue #25498: Merge ctypes crash fix from 3.5
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 8841fcb372..6341b23a2c 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -399,6 +399,7 @@ Gökcen Eraslan
Stoffel Erasmus
Jürgen A. Erhard
Michael Ernst
+Eryksun
Ben Escoto
Andy Eskilsson
André Espaze
diff --git a/Misc/NEWS b/Misc/NEWS
index 0dd41d938f..96c40b3765 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -398,6 +398,10 @@ Core and Builtins
Library
-------
+- Issue #25498: Fix a crash when garbage-collecting ctypes objects created
+ by wrapping a memoryview. This was a regression made in 3.5a1. Based
+ on patch by Eryksun.
+
- Issue #25232: Fix CGIRequestHandler to split the query from the URL at the
first question mark (?) rather than the last. Patch from Xiang Zhang.