summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-04-16 19:40:58 (GMT)
committerGuido van Rossum <guido@python.org>2003-04-16 19:40:58 (GMT)
commit76ba09fd81246c21f0de25f559d4da47b457f2e2 (patch)
treecd59c1827922a956b1ed047b4f21c6ee47d8ec01 /Misc/NEWS
parent954bcf5fe0d44f224c404628b0966bc63277548a (diff)
downloadcpython-76ba09fd81246c21f0de25f559d4da47b457f2e2.zip
cpython-76ba09fd81246c21f0de25f559d4da47b457f2e2.tar.gz
cpython-76ba09fd81246c21f0de25f559d4da47b457f2e2.tar.bz2
- super() no longer ignores data descriptors, except __class__. See
the thread started at http://mail.python.org/pipermail/python-dev/2003-April/034338.html
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4095c40..5eef5e9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.3 beta 1?
Core and builtins
-----------------
+- super() no longer ignores data descriptors, except __class__. See
+ the thread started at
+ http://mail.python.org/pipermail/python-dev/2003-April/034338.html
+
- list.insert(i, x) now interprets negative i as it would be
interpreted by slicing, so negative values count from the end of the
list. This was the only place where such an interpretation was not