summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-02-06 03:29:14 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-02-06 03:29:14 (GMT)
commit104b9e0ccac493b77ea051cafdf2e02edf2ccfd3 (patch)
tree1b4f829e1e96df7f9dcf4366942907e6f1a9f48a /Misc
parent9125fe2e50965f14d0472792caaf46e58392aed7 (diff)
downloadcpython-104b9e0ccac493b77ea051cafdf2e02edf2ccfd3.zip
cpython-104b9e0ccac493b77ea051cafdf2e02edf2ccfd3.tar.gz
cpython-104b9e0ccac493b77ea051cafdf2e02edf2ccfd3.tar.bz2
fix many custom mro() edge cases and improve code quality (#22735)
Patch by Eldar Abusalimov.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 733683d..65518db 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -16,6 +16,7 @@ Michael Abbott
Rajiv Abraham
David Abrahams
Marc Abramowitz
+Eldar Abusalimov
Ron Adam
Anton Afanasyev
Ali Afshar
diff --git a/Misc/NEWS b/Misc/NEWS
index 2a87416..a45546f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #22735: Fix many edge cases (including crashes) involving custom mro()
+ implementations.
+
- Issue #22896: Avoid using PyObject_AsCharBuffer(), PyObject_AsReadBuffer()
and PyObject_AsWriteBuffer().