From dc3abfc0d31ff3d28621ec99b8880361f6ebc27d Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Sun, 15 Mar 2009 12:48:49 +0000 Subject: [PATCH] Fix typo --- pep-0377.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0377.txt b/pep-0377.txt index d6aa22b55..f50e2d70d 100644 --- a/pep-0377.txt +++ b/pep-0377.txt @@ -15,7 +15,7 @@ Abstract ======== This PEP proposes a backwards compatible mechanism that allows ``__enter__()`` -methods to skip the body of the associated ``with`` statment. The lack of +methods to skip the body of the associated ``with`` statement. The lack of this ability currently means the ``contextlib.contextmanager`` decorator is unable to fulfil its specification of being able to turn arbitrary code into a context manager by moving it into a generator function