Remove "implicitly-raised" from abstract, it is just confusing.

This commit is contained in:
Guido van Rossum 2014-11-20 11:14:58 -08:00
parent e30dcf99fe
commit 41a39256fa
1 changed files with 1 additions and 1 deletions

View File

@ -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.