From 41a39256fa7108ce5ddc08125efbbd87242d0006 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 20 Nov 2014 11:14:58 -0800 Subject: [PATCH] Remove "implicitly-raised" from abstract, it is just confusing. --- pep-0479.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0479.txt b/pep-0479.txt index 2ed8cf585..06f2c6381 100644 --- a/pep-0479.txt +++ b/pep-0479.txt @@ -19,7 +19,7 @@ inside a generator. This would unify the behaviour of list comprehensions and generator expressions, reducing surprises such as the one that started this discussion [1]_. This is also the main backwards incompatibility of the proposal -- any generator that -depends on an implicitly-raised ``StopIteration`` to terminate it will +depends on raising ``StopIteration`` to terminate it will have to be rewritten to either catch that exception or use a for-loop.