summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-08-17 17:03:47 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-08-17 17:03:47 (GMT)
commit01fc6cd056ba5b389af55c58d46fbe1a33767d0c (patch)
tree85258354d5f702a0783481f0cda64e8305ebbce1 /Misc
parentd9f23d200426983bfb2aadf254fb84d2447a70e8 (diff)
downloadcpython-01fc6cd056ba5b389af55c58d46fbe1a33767d0c.zip
cpython-01fc6cd056ba5b389af55c58d46fbe1a33767d0c.tar.gz
cpython-01fc6cd056ba5b389af55c58d46fbe1a33767d0c.tar.bz2
make __doc__ mutable on heaptypes (closes #12773)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4cf9dda..e30a3cb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #12773: Make __doc__ mutable on user-defined classes.
+
- Issue #12766: Raise an ValueError when creating a class with a class variable
that conflicts with a name in __slots__.