diff options
author | Brett Cannon <bcannon@gmail.com> | 2004-08-15 07:21:25 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2004-08-15 07:21:25 (GMT) |
commit | add33601c2826a151718da295b15fbb8cf656e53 (patch) | |
tree | 5b06b8571dd84cba7d1d0da67143fd2f5a98b38b /Misc/NEWS | |
parent | 31f8350f439c3219c3975d127f8c5037d2362427 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |