summaryrefslogtreecommitdiff
path: root/Misc
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
commit14e7f6bc9d922445a66a2db68be0b203ee51d67d (patch)
tree26ff0e97bd9fb77b9d0f2aced3a0daa2e69fb465 /Misc
parent8d22ae2902dac801eb328489488293efda265dc6 (diff)
downloadcpython-14e7f6bc9d922445a66a2db68be0b203ee51d67d.tar.gz
Issue #27125: Fix various errors like ?will [be] inherited?
Diffstat (limited to 'Misc')
-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.)