From ba372a59d1fc9839a65d9ab3fef372acd4e5ee60 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Tue, 18 Sep 2012 07:17:49 +0300 Subject: [PATCH] #15796: Fix \n in readline docstring. --- Modules/_io/iobase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c index 176761d5379..caf85d59548 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");