From: Guido van Rossum Date: Fri, 6 Apr 2001 15:30:33 +0000 (+0000) Subject: Make the docstring a raw string, for pydoc. X-Git-Tag: v2.1c1~177 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4a1b6d7c4e96dd2af0541dd12444932260e2a66;p=thirdparty%2FPython%2Fcpython.git Make the docstring a raw string, for pydoc. (How many opre of these will we need? :-( ) --- diff --git a/Lib/asynchat.py b/Lib/asynchat.py index 35f5d1eda982..584aab9f3eb0 100644 --- a/Lib/asynchat.py +++ b/Lib/asynchat.py @@ -25,7 +25,7 @@ # CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # ====================================================================== -"""A class supporting chat-style (command/response) protocols. +r"""A class supporting chat-style (command/response) protocols. This class adds support for 'chat' style protocols - where one side sends a 'command', and the other sends a response (examples would be