From c2fcf9bb6bfe821bcad28b866d946a621aa993cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Mon, 15 Dec 2003 10:16:09 +0000 Subject: 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. --- Lib/StringIO.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/StringIO.py b/Lib/StringIO.py index 870e97e..6422f76 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. -- cgit v0.12