diff options
author | Martin Panter <vadmium+py@gmail.com> | 2017-01-14 09:56:00 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2017-01-14 09:56:00 (GMT) |
commit | 446a498a63f95c7a50781de0b1dc13cdb096d655 (patch) | |
tree | 187ee53a476ecc8038be1758360ff9d779a7e9fd /Modules | |
parent | 94b39ceb736997eb924dc509ea0ef55f4a19c706 (diff) | |
parent | 674b099eaa6bb1f5c5dfc88dea01e0e592976601 (diff) | |
download | cpython-446a498a63f95c7a50781de0b1dc13cdb096d655.zip cpython-446a498a63f95c7a50781de0b1dc13cdb096d655.tar.gz cpython-446a498a63f95c7a50781de0b1dc13cdb096d655.tar.bz2 |
Merge doc fixes from 3.6
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_io/textio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/textio.c b/Modules/_io/textio.c index 0a6dfe1..1d32d53 100644 --- a/Modules/_io/textio.c +++ b/Modules/_io/textio.c @@ -1012,7 +1012,7 @@ _io_TextIOWrapper___init___impl(textio *self, PyObject *buffer, errors); if (self->encoder == NULL) goto error; - /* Get the normalized named of the codec */ + /* Get the normalized name of the codec */ res = _PyObject_GetAttrId(codec_info, &PyId_name); if (res == NULL) { if (PyErr_ExceptionMatches(PyExc_AttributeError)) |