summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorŽiga Seilnacht <ziga.seilnacht@gmail.com>2007-03-16 11:59:38 (GMT)
committerŽiga Seilnacht <ziga.seilnacht@gmail.com>2007-03-16 11:59:38 (GMT)
commit6f2d09c949ac0c21c56c97e7f772a2726e34d74f (patch)
treee7244ea4d06e42bc6fd8f1745bed0ce682947c5f /Misc
parent6ab8452036beead2b74d38564162b291f2db643c (diff)
downloadcpython-6f2d09c949ac0c21c56c97e7f772a2726e34d74f.zip
cpython-6f2d09c949ac0c21c56c97e7f772a2726e34d74f.tar.gz
cpython-6f2d09c949ac0c21c56c97e7f772a2726e34d74f.tar.bz2
Patch #1623563: allow __class__ assignment for classes with __slots__.
The old and the new class are still required to have the same slot names, but the order in which they are specified is not relevant.
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 7b6002c..eeb266a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -276,6 +276,7 @@ Chris Herborth
Ivan Herman
Jürgen Hermann
Gary Herron
+Thomas Herve
Bernhard Herzog
Magnus L. Hetland
Raymond Hettinger
diff --git a/Misc/NEWS b/Misc/NEWS
index 8af1eb1..6e336b6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Patch #1623563: allow __class__ assignment for classes with __slots__.
+ The old and the new class are still required to have the same slot names.
+
- Patch #1642547: Fix an error/crash when encountering syntax errors in
complex if statements.