diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-18 04:17:49 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-18 04:17:49 (GMT) |
commit | ba372a59d1fc9839a65d9ab3fef372acd4e5ee60 (patch) | |
tree | ed5d404fb4aaab77684bfcf270043161ce5c62c3 /Modules | |
parent | b3b32fbd695234f9e2c447108c0e7c0f1e09ad15 (diff) | |
download | cpython-ba372a59d1fc9839a65d9ab3fef372acd4e5ee60.zip cpython-ba372a59d1fc9839a65d9ab3fef372acd4e5ee60.tar.gz cpython-ba372a59d1fc9839a65d9ab3fef372acd4e5ee60.tar.bz2 |
#15796: Fix \n in readline docstring.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_io/iobase.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c index 176761d..caf85d5 100644 --- a/Modules/_io/iobase.c +++ b/Modules/_io/iobase.c @@ -437,7 +437,7 @@ PyDoc_STRVAR(iobase_readline_doc, "\n" "If limit is specified, at most limit bytes will be read.\n" "\n" - "The line terminator is always b'\n' for binary files; for text\n" + "The line terminator is always b'\\n' for binary files; for text\n" "files, the newlines argument to open can be used to select the line\n" "terminator(s) recognized.\n"); |