Formatting fix

This commit is contained in:
Nick Coghlan 2009-03-15 01:28:54 +00:00
parent ea6d8f96ed
commit db055e0d40
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ that case the compiler has the option of simply emitting multiple ``with``
statements at the AST level, thus allowing the semantics of actual nested
``with`` statements to be reproduced accurately. However, such a change
would highlight rather than alleviate the problem the current PEP aims to
address: it would not be possible to use ``contextlib.contextmanager``to
address: it would not be possible to use ``contextlib.contextmanager`` to
reliably factor out such ``with`` statements, as they would exhibit exactly
the same semantic differences as are seen with the ``combined()`` context
manager in the above example.