diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:13:55 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:13:55 (GMT) |
commit | 585a6acfef1a03955bc2561aab7b2acfbb6bb2d4 (patch) | |
tree | cd3684ef639760f403da82b1448786ebd9c8379d /Modules/_io | |
parent | 6568714366e8c7c7222681a5ddcc13c57b7495a2 (diff) | |
parent | ec1aa5c2a1d0848351dd9d7d2758c553f18e56b2 (diff) | |
download | cpython-585a6acfef1a03955bc2561aab7b2acfbb6bb2d4.zip cpython-585a6acfef1a03955bc2561aab7b2acfbb6bb2d4.tar.gz cpython-585a6acfef1a03955bc2561aab7b2acfbb6bb2d4.tar.bz2 |
Merge typo fixes from 3.5
Diffstat (limited to 'Modules/_io')
-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') { |