summaryrefslogtreecommitdiffstats
path: root/Doc/library/http.cookiejar.rst
Commit message (Collapse)AuthorAgeFilesLines
* gh-61105: Add default param, note on using cookiejar subclass (#95427)Stanley2022-10-071-3/+5
|
* Document that MozillaCookieJar works for curl's cookie files (#91852)Boris Verkhovskiy2022-10-031-2/+2
| | | MozillaCookieJar works for curl's cookies
* bpo-42037: Corrected request dependencies in CookieJar functions (GH-23112)markus-sus2022-08-011-9/+8
|
* bpo-43225: [DOC] Add missing value returned by methods on cookiejar (GH-24522)Emmanuel Arias2021-11-151-3/+3
| | | | | | | | | | | | | | | | * Add missing value returned by methods on cookiejar Documentation say that return something but don't specific with what value is return, and that can be confuse. This patch add that information. * Update Doc/library/http.cookiejar.rst Co-authored-by: andrei kulakov <andrei.avk@gmail.com> * Update Doc/library/http.cookiejar.rst Co-authored-by: andrei kulakov <andrei.avk@gmail.com> Co-authored-by: andrei kulakov <andrei.avk@gmail.com>
* bpo-45441: Update some moved URLs in documentation (GH-28861)1809092021-10-121-1/+1
|
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-261-1/+1
| | | Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* bpo-41521: Replace denylist with blocklist is http.cookiejar doc (GH-21826)Victor Stinner2020-08-131-4/+4
| | | | | | | The http.cookiejar module has is_blocked() and blocked_domains() methods, so "blocklist" term sounds better than "denylist" in this module. Replace also denylisted with denied in test___all__.
* bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21822)Victor Stinner2020-08-111-6/+6
| | | Automerge-Triggered-By: @tiran
* bpo-38738: Fix formatting of True and False. (GH-17083)Serhiy Storchaka2019-11-121-3/+3
| | | | | | | | | * "Return true/false" is replaced with "Return ``True``/``False``" if the function actually returns a bool. * Fixed formatting of some True and False literals (now in monospace). * Replaced "True/False" with "true/false" if it can be not only bool. * Replaced some 1/0 with True/False if it corresponds the code. * "Returns <bool>" is replaced with "Return <bool>".
* bpo-37580: Fix typo in http.cookiejar documentation (GH-14731)Milan Oberkirch2019-07-131-1/+1
| | | | | | | | | [bpo-37580](https://bugs.python.org/issue37580): Markup typo in http.cookiejar doc https://bugs.python.org/issue37580
* bpo-36043: FileCookieJar supports os.PathLike (GH-11945)Stéphane Wirtel2019-03-011-0/+7
| | | https://bugs.python.org/issue36043
* bpo-34911: Added support for secure websocket cookies (GH-9734)Paul Bailey2018-10-081-4/+6
|
* bpo-33641: Convert RFC references into links. (GH-7103)Serhiy Storchaka2018-05-311-19/+19
| | | | 85% of them are already links.
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-0/+1
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-1/+1
|
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
| | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar.
* Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-101-1/+1
|
* Fixing broken links in doc, part 3: the restGeorg Brandl2014-10-291-1/+1
|
* Removed spaces before commas and periods.Serhiy Storchaka2013-12-231-1/+1
|
* Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-8/+8
|
* Fix #18007 : Document CookieJar.add_cookie_header request parameter changes ↵Senthil Kumaran2013-05-231-5/+15
| | | | in 3.3
* #14804: Remove [] around optional arguments with default valuesHynek Schlawack2012-05-211-1/+1
|\
| * #14804: Remove [] around optional arguments with default valuesHynek Schlawack2012-05-211-1/+1
| |
* | Replace mentions of IOErrorAntoine Pitrou2011-10-121-2/+9
|/
* Merge 3.1Éric Araujo2011-03-261-1/+1
|\
| * Use universal construct os.path.expanduser('~') instead of os.environ['HOME']Éric Araujo2011-03-251-1/+1
| |
| * Merged revisions 82785 via svnmerge fromSenthil Kumaran2010-07-111-9/+2
| | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82785 | senthil.kumaran | 2010-07-11 10:31:52 +0530 (Sun, 11 Jul 2010) | 3 lines Issue2007: Removing reference to MSIE Cookie handling by mechanize. Suggested by John J Lee. ........
| * Merged revisions 80629 via svnmerge fromSenthil Kumaran2010-04-291-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80629 | senthil.kumaran | 2010-04-30 01:32:50 +0530 (Fri, 30 Apr 2010) | 9 lines Merged revisions 80627 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80627 | senthil.kumaran | 2010-04-30 01:16:08 +0530 (Fri, 30 Apr 2010) | 3 lines Fixing the Broken links of mechanize library. ........ ................
* | More source linksRaymond Hettinger2011-01-271-0/+3
| |
* | Issue2007: Removing reference to MSIE Cookie handling by mechanize. ↵Senthil Kumaran2010-07-111-9/+2
| | | | | | | | Suggested by John J Lee.
* | Merged revisions 80627 via svnmerge fromSenthil Kumaran2010-04-291-2/+2
|/ | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80627 | senthil.kumaran | 2010-04-30 01:16:08 +0530 (Fri, 30 Apr 2010) | 3 lines Fixing the Broken links of mechanize library. ........
* Merged revisions 68162,68166,68171,68176,68195-68196,68210,68232 via ↵Georg Brandl2009-01-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r68162 | ronald.oussoren | 2009-01-02 16:06:00 +0100 (Fri, 02 Jan 2009) | 3 lines Fix for issue 4472 is incompatible with Cygwin, this patch should fix that. ........ r68166 | benjamin.peterson | 2009-01-02 19:26:23 +0100 (Fri, 02 Jan 2009) | 1 line document PyMemberDef ........ r68171 | georg.brandl | 2009-01-02 21:25:14 +0100 (Fri, 02 Jan 2009) | 3 lines #4811: fix markup glitches (mostly remains of the conversion), found by Gabriel Genellina. ........ r68176 | andrew.kuchling | 2009-01-02 22:00:35 +0100 (Fri, 02 Jan 2009) | 1 line Add various items ........ r68195 | georg.brandl | 2009-01-03 14:45:15 +0100 (Sat, 03 Jan 2009) | 2 lines Remove useless string literal. ........ r68196 | georg.brandl | 2009-01-03 15:29:53 +0100 (Sat, 03 Jan 2009) | 2 lines Fix indentation. ........ r68210 | georg.brandl | 2009-01-03 20:10:12 +0100 (Sat, 03 Jan 2009) | 2 lines Set eol-style correctly for mp_distributing.py. ........ r68232 | georg.brandl | 2009-01-03 22:52:16 +0100 (Sat, 03 Jan 2009) | 2 lines Grammar fix. ........
* Fix old urllib/urllib2/urlparse usage.Georg Brandl2008-06-231-19/+20
|
* Remove last traces of mimetools.Georg Brandl2008-06-121-4/+3
|
* Create http package. #2883.Georg Brandl2008-05-261-0/+746