diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-29 08:13:58 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-29 08:13:58 (GMT) |
commit | b44c4520d965788aa6d24edab36d89103b0a1aea (patch) | |
tree | 2c649fcb5f7518dace35b8241c9f4ffd60eda14f /Misc/HISTORY | |
parent | 6ee36a5a8cf7aff3a2b5f3ab50bb46a31c377750 (diff) | |
download | cpython-b44c4520d965788aa6d24edab36d89103b0a1aea.zip cpython-b44c4520d965788aa6d24edab36d89103b0a1aea.tar.gz cpython-b44c4520d965788aa6d24edab36d89103b0a1aea.tar.bz2 |
Issue #27125: Fix various errors like “will [be] inherited”
Diffstat (limited to 'Misc/HISTORY')
-rw-r--r-- | Misc/HISTORY | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY index 9545c97..b8a4576 100644 --- a/Misc/HISTORY +++ b/Misc/HISTORY @@ -5148,7 +5148,7 @@ Core and builtins - All standard iterators now ensure that, once StopIteration has been raised, all future calls to next() on the same iterator will also raise StopIteration. There used to be various counterexamples to - this behavior, which could caused confusion or subtle program + this behavior, which could have caused confusion or subtle program breakage, without any benefits. (Note that this is still an iterator's responsibility; the iterator framework does not enforce this.) |