diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-03 23:00:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-03 23:00:40 (GMT) |
commit | f8a3c4cb83ec277d6a4ee1392165960d3bd56426 (patch) | |
tree | d5ce890f6577c7f81e0fbff64c682d7ed4ae9623 /Lib | |
parent | 17b49be00320be43566b862f61de5aac5109dbdd (diff) | |
download | cpython-f8a3c4cb83ec277d6a4ee1392165960d3bd56426.zip cpython-f8a3c4cb83ec277d6a4ee1392165960d3bd56426.tar.gz cpython-f8a3c4cb83ec277d6a4ee1392165960d3bd56426.tar.bz2 |
Document that MozillaCookieJar works for curl's cookie files (GH-91852)
MozillaCookieJar works for curl's cookies
(cherry picked from commit 0ea8b925d096629852d1045c2c53ff6ad63199cc)
Co-authored-by: Boris Verkhovskiy <boris.verk@gmail.com>
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/http/cookiejar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/cookiejar.py b/Lib/http/cookiejar.py index eaa76c2..0380d9f 100644 --- a/Lib/http/cookiejar.py +++ b/Lib/http/cookiejar.py @@ -1990,7 +1990,7 @@ class MozillaCookieJar(FileCookieJar): This class differs from CookieJar only in the format it uses to save and load cookies to and from a file. This class uses the Mozilla/Netscape - `cookies.txt' format. lynx uses this file format, too. + `cookies.txt' format. curl and lynx use this file format, too. Don't expect cookies saved while the browser is running to be noticed by the browser (in fact, Mozilla on unix will overwrite your saved cookies if |