*Really* move the __enter__ call where it belongs.

This commit is contained in:
Guido van Rossum 2005-05-16 13:42:52 +00:00
parent 2b1d6dd3c8
commit 6d466b9e14
1 changed files with 1 additions and 1 deletions

View File

@ -159,8 +159,8 @@ Specification
abc = EXPR
exc = (None, None, None)
VAR = abc.__enter__()
try:
VAR = abc.__enter__()
try:
BLOCK
except: