[Python-checkins] python/nondist/peps pep-0343.txt,1.10,1.11

gvanrossum@users.sourceforge.net gvanrossum at users.sourceforge.net
Mon May 16 15:42:55 CEST 2005


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

Modified Files:
	pep-0343.txt 
Log Message:
*Really* move the __enter__ call where it belongs.


Index: pep-0343.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0343.txt,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- pep-0343.txt	16 May 2005 00:36:01 -0000	1.10
+++ pep-0343.txt	16 May 2005 13:42:52 -0000	1.11
@@ -159,8 +159,8 @@
 
         abc = EXPR
         exc = (None, None, None)
+        VAR = abc.__enter__()
         try:
-            VAR = abc.__enter__()
             try:
                 BLOCK
             except:



More information about the Python-checkins mailing list