From 6d466b9e142d905ee82bede3a8d1c6f7922723ab Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 16 May 2005 13:42:52 +0000 Subject: [PATCH] *Really* move the __enter__ call where it belongs. --- pep-0343.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0343.txt b/pep-0343.txt index 19c566eb9..33e83aafb 100644 --- a/pep-0343.txt +++ b/pep-0343.txt @@ -159,8 +159,8 @@ Specification abc = EXPR exc = (None, None, None) + VAR = abc.__enter__() try: - VAR = abc.__enter__() try: BLOCK except: