From 06efea3392e54b50f66e790735837e092585350f Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=89ric=20Araujo?= Date: Sun, 26 Feb 2012 01:33:22 +0100 Subject: [PATCH] Use raw strings for docstrings with backslashes in ASCII diagrams --- Lib/cookielib.py | 2 +- Lib/httplib.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/cookielib.py b/Lib/cookielib.py index 65214df30d..f9c8d2f84b 100644 --- a/Lib/cookielib.py +++ b/Lib/cookielib.py @@ -1,4 +1,4 @@ -"""HTTP cookie handling for web clients. +r"""HTTP cookie handling for web clients. This module has (now fairly distant) origins in Gisle Aas' Perl module HTTP::Cookies, from the libwww-perl library. diff --git a/Lib/httplib.py b/Lib/httplib.py index 19bcd1b41b..13629c4a96 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -1,4 +1,4 @@ -"""HTTP/1.1 client library +r"""HTTP/1.1 client library -- 2.50.1