From: Walter Dörwald Date: Mon, 15 Dec 2003 10:16:09 +0000 (+0000) Subject: Make the module docstring a raw string, so that the backslash in X-Git-Tag: v2.4a1~1092 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c2fcf9bb6bfe821bcad28b866d946a621aa993cb;p=python 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. --- 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.