Fix an apparent typo in the expanded code.

This commit is contained in:
Hye-Shik Chang 2006-03-03 06:39:47 +00:00
parent 854454ef09
commit 5104007210
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ Specification: The 'with' Statement
The translation of the above statement is:
ctx = (EXPR).__context__()
exit = exc.__exit__ # Not calling it yet
exit = ctx.__exit__ # Not calling it yet
value = ctx.__enter__()
exc = True
try: