summaryrefslogtreecommitdiff
path: root/Misc/HISTORY
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-29 04:13:35 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-05-29 04:13:35 +0000
commit8d56c026a5dd724318be005465366d5140fa6fe7 (patch)
tree9e1efdce69034e7c5088bcf176a7bcf5144c560f /Misc/HISTORY
parente8a175eaa067d0f434933d2f003260a6d739c2d1 (diff)
downloadcpython-git-8d56c026a5dd724318be005465366d5140fa6fe7.tar.gz
Issue #27125: Fix various errors like “will [be] inherited”
Diffstat (limited to 'Misc/HISTORY')
-rw-r--r--Misc/HISTORY4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY
index 19d612ef1c..73a041d6fc 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.)