Correct the order of application for decorators. Meant to be bottom-up and not
top-down. Now matches the PEP.
diff --git a/Misc/NEWS b/Misc/NEWS
index 43e7553..e564c2b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
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.