summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-04-24 15:09:20 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-04-24 15:09:20 (GMT)
commit42f58818d6100c2bef07245e360e7d8ca660058f (patch)
tree899889f3420a069e1dadc2a9dc7d9480b4654b5c /Misc
parent7ce67e45f89d5d4955c4f72a64631aa9b56b8471 (diff)
parent7b1668735ace947474bb94f812c03b39bd963a77 (diff)
downloadcpython-42f58818d6100c2bef07245e360e7d8ca660058f.zip
cpython-42f58818d6100c2bef07245e360e7d8ca660058f.tar.gz
cpython-42f58818d6100c2bef07245e360e7d8ca660058f.tar.bz2
merge 3.2 (#14658)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2b7b8ad..b6b76ff 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -14,6 +14,12 @@ Core and Builtins
their keys with other dictionaries. Classes take advantage of this to share
their instance dictionary keys for improved memory and performance.
+- Issue #11603 (again): Setting __repr__ to __str__ now raises a RuntimeError
+ when repr() or str() is called on such an object.
+
+- Issue #14658: Fix binding a special method to a builtin implementation of a
+ special method with a different name.
+
- Issue #14630: Fix a memory access bug for instances of a subclass of int
with value 0.