[Python-checkins] python/nondist/peps pep-0340.txt,1.4,1.5

gvanrossum at users.sourceforge.net gvanrossum at users.sourceforge.net
Wed Apr 27 23:54:30 CEST 2005


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21381

Modified Files:
	pep-0340.txt 
Log Message:
In the original translation for block-statement, reset ret = False
each time before executing BLOCK1.  (Thanks to Duncan Booth.)


Index: pep-0340.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0340.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- pep-0340.txt	27 Apr 2005 21:12:49 -0000	1.4
+++ pep-0340.txt	27 Apr 2005 21:54:27 -0000	1.5
@@ -168,6 +168,7 @@
                 break
             try:
                 val = arg = None
+                ret = False
                 BLOCK1
             except Exception, val:
                 arg = StopIteration()
@@ -344,12 +345,13 @@
 Acknowledgements
 
     In no useful order: Alex Martelli, Barry Warsaw, Bob Ippolito,
-    Brett Cannon, Brian Sabbey, Doug Landauer, Fredrik Lundh, Greg
-    Ewing, Holger Krekel, Jason Diamond, Jim Jewett, Josiah Carlson,
-    Ka-Ping Yee, Michael Chermside, Michael Hudson, Nick Coghlan, Paul
-    Moore, Phillip Eby, Raymond Hettinger, Samuele Pedroni, Shannon
-    Behrens, Steven Bethard, Terry Reedy, Tim Delaney, Aahz, and
-    others.  Thanks all for a valuable discussion and ideas.
+    Brett Cannon, Brian Sabbey, Doug Landauer, Duncan Booth, Fredrik
+    Lundh, Greg Ewing, Holger Krekel, Jason Diamond, Jim Jewett,
+    Josiah Carlson, Ka-Ping Yee, Michael Chermside, Michael Hudson,
+    Nick Coghlan, Paul Moore, Phillip Eby, Raymond Hettinger, Samuele
+    Pedroni, Shannon Behrens, Steven Bethard, Terry Reedy, Tim
+    Delaney, Aahz, and others.  Thanks all for a valuable discussion
+    and ideas.
 
 References
 



More information about the Python-checkins mailing list