summaryrefslogtreecommitdiffstats
path: root/Modules/_io/textio.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2017-01-14 09:56:00 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2017-01-14 09:56:00 (GMT)
commit446a498a63f95c7a50781de0b1dc13cdb096d655 (patch)
tree187ee53a476ecc8038be1758360ff9d779a7e9fd /Modules/_io/textio.c
parent94b39ceb736997eb924dc509ea0ef55f4a19c706 (diff)
parent674b099eaa6bb1f5c5dfc88dea01e0e592976601 (diff)
downloadcpython-446a498a63f95c7a50781de0b1dc13cdb096d655.zip
cpython-446a498a63f95c7a50781de0b1dc13cdb096d655.tar.gz
cpython-446a498a63f95c7a50781de0b1dc13cdb096d655.tar.bz2
Merge doc fixes from 3.6
Diffstat (limited to 'Modules/_io/textio.c')
-rw-r--r--Modules/_io/textio.c2
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))