diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-21 13:31:24 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-21 13:31:24 (GMT) |
commit | 8b15ee0d6e72ec91cbd2ec178bf2ae77cbd33b59 (patch) | |
tree | 4326f7669d44c63667382759326c7dbc76efbc7e /Lib/http | |
parent | 7d5a8d78f0b4a6b41c297abf3cff19d1dc89844a (diff) | |
parent | 0847db7c01cb07011d3ab7a4de43cc90417637af (diff) | |
download | cpython-8b15ee0d6e72ec91cbd2ec178bf2ae77cbd33b59.zip cpython-8b15ee0d6e72ec91cbd2ec178bf2ae77cbd33b59.tar.gz cpython-8b15ee0d6e72ec91cbd2ec178bf2ae77cbd33b59.tar.bz2 |
#15980: merge with 3.2.
Diffstat (limited to 'Lib/http')
-rw-r--r-- | Lib/http/cookiejar.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/http/cookiejar.py b/Lib/http/cookiejar.py index 8f3f6dc..901e762 100644 --- a/Lib/http/cookiejar.py +++ b/Lib/http/cookiejar.py @@ -1825,7 +1825,7 @@ def lwp_cookie_str(cookie): class LWPCookieJar(FileCookieJar): """ - The LWPCookieJar saves a sequence of"Set-Cookie3" lines. + The LWPCookieJar saves a sequence of "Set-Cookie3" lines. "Set-Cookie3" is the format used by the libwww-perl libary, not known to be compatible with any browser, but which is easy to read and doesn't lose information about RFC 2965 cookies. @@ -1837,7 +1837,7 @@ class LWPCookieJar(FileCookieJar): """ def as_lwp_str(self, ignore_discard=True, ignore_expires=True): - """Return cookies as a string of "\n"-separated "Set-Cookie3" headers. + """Return cookies as a string of "\\n"-separated "Set-Cookie3" headers. ignore_discard and ignore_expires: see docstring for FileCookieJar.save |