diff options
| author | Martin Panter <vadmium+py@gmail.com> | 2017-01-14 09:54:57 +0000 |
|---|---|---|
| committer | Martin Panter <vadmium+py@gmail.com> | 2017-01-14 09:54:57 +0000 |
| commit | 1b6a0a7c5acdbeac3ab5fadb879ea0707a337f4e (patch) | |
| tree | 48e17b812f2500bbfb192719417d2df3cc60b176 /Modules/_io | |
| parent | 112342febb9d5189620a19099e5ab3a815021ce4 (diff) | |
| parent | 2e284a624ce7caf09318fc17ff93169dad939670 (diff) | |
| download | cpython-1b6a0a7c5acdbeac3ab5fadb879ea0707a337f4e.tar.gz | |
Merge doc fixes from 3.5
Diffstat (limited to 'Modules/_io')
| -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 1c7200b0ae..4df55626d4 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)) |
