summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-07-28 01:30:58 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-07-28 01:30:58 (GMT)
commit8bde9111157e0eb994159c1506b1cec86298f810 (patch)
tree27d5ea90712d9eee3e678804ef581bac50ff9ba2 /Modules
parent4b53359090b7b3cfad128e40083f563f7c1900e4 (diff)
parenteb9957065acaafbf3d8ebee4770ecb13ea0c07c0 (diff)
downloadcpython-8bde9111157e0eb994159c1506b1cec86298f810.zip
cpython-8bde9111157e0eb994159c1506b1cec86298f810.tar.gz
cpython-8bde9111157e0eb994159c1506b1cec86298f810.tar.bz2
Issue #27626: Merge spelling fixes from 3.5
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_ctypes/_ctypes.c2
-rw-r--r--Modules/itertoolsmodule.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c
index 331343b..cd5b4aa 100644
--- a/Modules/_ctypes/_ctypes.c
+++ b/Modules/_ctypes/_ctypes.c
@@ -332,7 +332,7 @@ _ctypes_alloc_format_string_with_shape(int ndim, const Py_ssize_t *shape,
/*
PyCStructType_Type - a meta type/class. Creating a new class using this one as
- __metaclass__ will call the contructor StructUnionType_new. It replaces the
+ __metaclass__ will call the constructor StructUnionType_new. It replaces the
tp_dict member with a new instance of StgDict, and initializes the C
accessible fields somehow.
*/
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c
index c82ad7a..c966376 100644
--- a/Modules/itertoolsmodule.c
+++ b/Modules/itertoolsmodule.c
@@ -1923,7 +1923,7 @@ iterable, until all of the iterables are exhausted.");
PyDoc_STRVAR(chain_from_iterable_doc,
"chain.from_iterable(iterable) --> chain object\n\
\n\
-Alternate chain() contructor taking a single iterable argument\n\
+Alternate chain() constructor taking a single iterable argument\n\
that evaluates lazily.");
static PyMethodDef chain_methods[] = {