summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-09-18 04:17:49 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-09-18 04:17:49 (GMT)
commitba372a59d1fc9839a65d9ab3fef372acd4e5ee60 (patch)
treeed5d404fb4aaab77684bfcf270043161ce5c62c3 /Modules
parentb3b32fbd695234f9e2c447108c0e7c0f1e09ad15 (diff)
downloadcpython-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.c2
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");