Commit ba372a59 authored by Ezio Melotti's avatar Ezio Melotti

#15796: Fix \n in readline docstring.

parent b3b32fbd
...@@ -437,7 +437,7 @@ PyDoc_STRVAR(iobase_readline_doc, ...@@ -437,7 +437,7 @@ PyDoc_STRVAR(iobase_readline_doc,
"\n" "\n"
"If limit is specified, at most limit bytes will be read.\n" "If limit is specified, at most limit bytes will be read.\n"
"\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" "files, the newlines argument to open can be used to select the line\n"
"terminator(s) recognized.\n"); "terminator(s) recognized.\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment