summaryrefslogtreecommitdiff
path: root/Lib/StringIO.py
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2003-12-15 10:16:09 +0000
committerWalter Dörwald <walter@livinglogic.de>2003-12-15 10:16:09 +0000
commit262e8551283e601aef8af82983dee4683c74e092 (patch)
tree142e8056a0c366bad7660562b6d4d0c53c037e4d /Lib/StringIO.py
parente372d8f280684d9dac7cb18f8234fcdb41c2068a (diff)
downloadcpython-262e8551283e601aef8af82983dee4683c74e092.tar.gz
Make the module docstring a raw string, so that the backslash in
"read until end of line ('\n') or EOF" will be treated literally. Fixes SF bug #860155.
Diffstat (limited to 'Lib/StringIO.py')
-rw-r--r--Lib/StringIO.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/StringIO.py b/Lib/StringIO.py
index 870e97eb30..6422f76647 100644
--- a/Lib/StringIO.py
+++ b/Lib/StringIO.py
@@ -1,4 +1,4 @@
-"""File-like objects that read from or write to a string buffer.
+r"""File-like objects that read from or write to a string buffer.
This implements (nearly) all stdio methods.