diff options
author | Guido van Rossum <guido@python.org> | 2003-04-16 19:40:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-04-16 19:40:58 (GMT) |
commit | 76ba09fd81246c21f0de25f559d4da47b457f2e2 (patch) | |
tree | cd59c1827922a956b1ed047b4f21c6ee47d8ec01 /Misc/NEWS | |
parent | 954bcf5fe0d44f224c404628b0966bc63277548a (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |