diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:01:47 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:01:47 (GMT) |
commit | 3f930dcd8725078c1655f09ca9bea0889e999fd6 (patch) | |
tree | 3b4079f251261009de434a8a42904a1438b50b94 /Modules | |
parent | 397625e43280c1dec19af59c53704e0d95b557d5 (diff) | |
parent | 9955a373a8ae5a3ac9108afc436199277fdedff7 (diff) | |
download | cpython-3f930dcd8725078c1655f09ca9bea0889e999fd6.zip cpython-3f930dcd8725078c1655f09ca9bea0889e999fd6.tar.gz cpython-3f930dcd8725078c1655f09ca9bea0889e999fd6.tar.bz2 |
Merge typo fixes from 3.4 into 3.5
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_io/stringio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/stringio.c b/Modules/_io/stringio.c index 8315ab8..21c2b19 100644 --- a/Modules/_io/stringio.c +++ b/Modules/_io/stringio.c @@ -750,7 +750,7 @@ _io_StringIO___init___impl(stringio *self, PyObject *value, /* If newline == "", we don't translate anything. If newline == "\n" or newline == None, we translate to "\n", which is a no-op. - (for newline == None, TextIOWrapper translates to os.sepline, but it + (for newline == None, TextIOWrapper translates to os.linesep, but it is pointless for StringIO) */ if (newline != NULL && newline[0] == '\r') { |