summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2004-08-15 07:21:25 (GMT)
committerBrett Cannon <bcannon@gmail.com>2004-08-15 07:21:25 (GMT)
commitadd33601c2826a151718da295b15fbb8cf656e53 (patch)
tree5b06b8571dd84cba7d1d0da67143fd2f5a98b38b /Misc/NEWS
parent31f8350f439c3219c3975d127f8c5037d2362427 (diff)
downloadcpython-add33601c2826a151718da295b15fbb8cf656e53.zip
cpython-add33601c2826a151718da295b15fbb8cf656e53.tar.gz
cpython-add33601c2826a151718da295b15fbb8cf656e53.tar.bz2
Correct the order of application for decorators. Meant to be bottom-up and not
top-down. Now matches the PEP.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 43e7553..e564c2b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.4 alpha 3?
Core and builtins
-----------------
+- Fix the order of application of decorators. The proper order is bottom-up;
+ the first decorator listed is the last one called.
+
- SF patch #1005778. Fix a seg fault if the list size changed while
calling list.index(). This could happen if a rich comparison function
modified the list.