diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-29 04:13:35 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-29 04:13:35 (GMT) |
commit | 8d56c026a5dd724318be005465366d5140fa6fe7 (patch) | |
tree | 9e1efdce69034e7c5088bcf176a7bcf5144c560f /Misc/HISTORY | |
parent | e8a175eaa067d0f434933d2f003260a6d739c2d1 (diff) | |
download | cpython-8d56c026a5dd724318be005465366d5140fa6fe7.zip cpython-8d56c026a5dd724318be005465366d5140fa6fe7.tar.gz cpython-8d56c026a5dd724318be005465366d5140fa6fe7.tar.bz2 |
Issue #27125: Fix various errors like “will [be] inherited”
Diffstat (limited to 'Misc/HISTORY')
-rw-r--r-- | Misc/HISTORY | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY index 19d612e..73a041d 100644 --- a/Misc/HISTORY +++ b/Misc/HISTORY @@ -6633,7 +6633,7 @@ C-API PyErr_Format, on machines with HAVE_LONG_LONG defined. - Issue #6151: Made PyDescr_COMMON conform to standard C (like PyObject_HEAD in - PEP 3123). The PyDescr_TYPE and PyDescr_NAME macros should be should used for + PEP 3123). The PyDescr_TYPE and PyDescr_NAME macros should be used for accessing the d_type and d_name members of structures using PyDescr_COMMON. - Issue #6405: Remove duplicate type declarations in descrobject.h. @@ -16065,7 +16065,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.) |