diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 14:02:35 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 14:02:35 (GMT) |
commit | 1ce738e08f147beb724f22a9411724a955cd418d (patch) | |
tree | 9c2b84d7b81d1117159dd791094994d96094077e /Modules/arraymodule.c | |
parent | cc22984d9e5e5357212db2eb1841f93e75fe75f5 (diff) | |
parent | 4c35964b764540988bfb342bffc7c4b1cb674031 (diff) | |
download | cpython-1ce738e08f147beb724f22a9411724a955cd418d.zip cpython-1ce738e08f147beb724f22a9411724a955cd418d.tar.gz cpython-1ce738e08f147beb724f22a9411724a955cd418d.tar.bz2 |
Merge typo fixes from 3.5
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r-- | Modules/arraymodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 323e0c1..78e5561 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -2090,7 +2090,7 @@ array__array_reconstructor_impl(PyModuleDef *module, PyTypeObject *arraytype, * that fits better. This may result in an array with narrower * or wider elements. * - * For example, if a 32-bit machine pickles a L-code array of + * For example, if a 32-bit machine pickles an L-code array of * unsigned longs, then the array will be unpickled by 64-bit * machine as an I-code array of unsigned ints. * |