[Python-checkins] python/dist/src/Misc NEWS,1.1092,1.1093

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sun Aug 15 09:21:28 CEST 2004


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31674/Misc

Modified Files:
	NEWS 
Log Message:
Correct the order of application for decorators.  Meant to be bottom-up and not
top-down.  Now matches the PEP.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1092
retrieving revision 1.1093
diff -C2 -d -r1.1092 -r1.1093
*** NEWS	14 Aug 2004 15:19:28 -0000	1.1092
--- NEWS	15 Aug 2004 07:21:25 -0000	1.1093
***************
*** 13,16 ****
--- 13,19 ----
  -----------------
  
+ - 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



More information about the Python-checkins mailing list