summaryrefslogtreecommitdiffstats
path: root/Doc/library/urllib.request.rst
Commit message (Collapse)AuthorAgeFilesLines
* Fix a few scoping issues with versionadded/versionchanged directives.Georg Brandl2014-03-241-3/+4
|
* Merge in all documentation changes since branching 3.4.0rc1.Larry Hastings2014-03-161-5/+12
|
* Removed spaces before commas and periods.Serhiy Storchaka2013-12-231-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-2/+2
|\ \ | |/
| * Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-2/+2
| |
* | Improve #19204: Improved cross-references in the urllib package documentation.Serhiy Storchaka2013-10-131-20/+21
|\ \ | |/
| * Improve #19204: Improved cross-references in the urllib package documentation.Serhiy Storchaka2013-10-131-20/+21
| |
* | Issue #18978: Update docs to reflect explicitly the ability to set the ↵Jason R. Coombs2013-09-221-0/+5
| | | | | | | | attribute at the class level.
* | Fix #17272 - Make Request.full_url and Request.get_full_url return same ↵Senthil Kumaran2013-05-241-0/+10
| | | | | | | | | | | | result under all circumstances. Document the change of Request.full_url to a property.
* | - Issue #17977: The documentation for the cadefault argument's default valueBarry Warsaw2013-05-141-1/+1
|\ \ | |/ | | | | in urllib.request.urlopen() is fixed to match the code.
| * - Issue #17977: The documentation for the cadefault argument's default valueBarry Warsaw2013-05-141-1/+1
| | | | | | | | in urllib.request.urlopen() is fixed to match the code.
* | Merge: Reflow paragraphs.R David Murray2013-04-281-10/+9
|\ \ | |/ | | | | | | (I got a merge conflict on this in urllib.request.rst, which makes no sense to me. Hopefully I didn't screw up the previous 3.3 commit.)
| * Reflow paragraphs.R David Murray2013-04-281-10/+9
| | | | | | | | | | I know one of them looks worse, but now it is <80 chars and matches the 2.7 text.
* | Merge #7152: Clarify that ProxyHandler is added only if proxy settings are ↵R David Murray2013-04-281-6/+9
|\ \ | |/ | | | | | | | | detected. Behavior confirmation and initial patch by Jessica McKellar.
| * #7152: Clarify that ProxyHandler is added only if proxy settings are detected.R David Murray2013-04-281-6/+9
| | | | | | | | Behavior confirmation and initial patch by Jessica McKellar.
* | #17474 - merge from 3.3. Update default Docs with versionchanged markup on ↵Senthil Kumaran2013-03-201-0/+5
|\ \ | |/ | | | | what's removed
| * #17474 - Mark the deprecated Request methods as deprecated-removed. Review ↵Senthil Kumaran2013-03-201-8/+8
| | | | | | | | by Ezio Melotti
* | #17474 - Remove the various deprecated methods of Request class.Senthil Kumaran2013-03-191-69/+0
| |
* | #10050 : merge to defaultSenthil Kumaran2013-03-191-0/+4
|\ \ | |/
| * #10050 - Document DeprecationWarnings for URLopener and FancyURLopener ↵Senthil Kumaran2013-03-191-0/+4
| | | | | | | | (msg172874 )
* | #17307 - merge from 3.3Senthil Kumaran2013-03-131-0/+9
|\ \ | |/
| * #17307 - merge from 3.2Senthil Kumaran2013-03-131-0/+9
| |\
* | \ Addressing the review comment made by Terry ReedySenthil Kumaran2013-02-081-3/+3
|\ \ \ | |/ /
| * | Addressing the review comment made by Terry ReedySenthil Kumaran2013-02-081-3/+3
| |\ \ | | |/
| | * Addressing the review comment made by Terry ReedySenthil Kumaran2013-02-081-3/+3
| | |
* | | Fix Issue17069: Document getcode method in urllib.request.rstSenthil Kumaran2013-02-071-4/+12
|\ \ \ | |/ /
| * | Fix Issue17069: Document getcode method in urllib.request.rstSenthil Kumaran2013-02-071-4/+12
| |\ \ | | |/
| | * Fix Issue17069: Document getcode method in urllib.request.rstSenthil Kumaran2013-02-071-4/+12
| | |
| | * Fix a bunch of "versionchanged" related markup errors.Georg Brandl2012-06-241-4/+3
| | |
* | | Add a missing versionadded.Georg Brandl2012-12-221-0/+2
| | |
* | | Issue #16464: reset Request's Content-Length header on .data change.Andrew Svetlov2012-11-271-0/+10
| | | | | | | | | | | | | | | | | | It will be recalculated on sending request to HTTP server. Patch by Alexey Kachayev
* | | Issue #16423: urllib.request now has support for ``data:`` URLs.Antoine Pitrou2012-11-241-2/+24
|/ / | | | | | | Patch by Mathias Panzenböck.
* | Fixes issue #16409: The reporthook callback made by the legacyGregory P. Smith2012-11-101-1/+2
| | | | | | | | | | | | urllib.request.urlretrieve API now properly supplies a constant non-zero block_size as it did in Python 3.2 and 2.7. This matches the behavior of urllib.request.URLopener.retrieve.
* | Issue #15410: Fix the urllib.request.Request.is_unverifiable deprecation ↵Meador Inge2012-07-211-1/+1
| | | | | | | | documentation.
* | Fix a couple of versionadded/versionchanged related markup errors.Georg Brandl2012-06-241-5/+4
| |
* | Issue #14780: urllib.request.urlopen() now has a `cadefault` argument to use ↵Antoine Pitrou2012-05-161-3/+12
| | | | | | | | | | | | the default certificate store. Initial patch by James Oakley.
* | issue14427 - Document Request.get_header and Request.header_itemsSenthil Kumaran2012-04-291-0/+12
|\ \ | |/
| * issue14427 - Document Request.get_header and Request.header_itemsSenthil Kumaran2012-04-291-0/+11
| |
* | Explain the use of charset parameter with Content-Type header: issue11082Senthil Kumaran2012-03-161-23/+51
|\ \ | |/
| * Explain the use of charset parameter with Content-Type header. Issue11082Senthil Kumaran2012-03-161-21/+49
| |
* | cpython:Fix the wrong urllib exampls which use str for POST data. Closes ↵Senthil Kumaran2012-03-151-9/+8
|\ \ | |/ | | | | Issue11261
| * Fix the wrong urllib exampls which use str for POST data. Closes Issue11261Senthil Kumaran2012-03-151-12/+11
| |
* | deprecated the old urllib primitives in 3.3 urllib package - issue 10050Senthil Kumaran2012-03-141-27/+51
| |
* | default: closes Issue12365 - Add an example explaining the context manager ↵Senthil Kumaran2012-03-141-5/+13
|\ \ | |/ | | | | use case of urllib.urlopen
| * closes Issue12365 - Add an example explaining the context manager use case ↵Senthil Kumaran2012-03-141-5/+13
| | | | | | | | of urllib.urlopen
* | Issue10050 - urlretrieve uses newer urlopen. reporthook of urlretrieve ↵Senthil Kumaran2012-03-141-17/+22
| | | | | | | | takes, block number, block read size, file_size
* | Merge from 3.2 - Issue9637 - Explain in getproxies_environment that ↵Senthil Kumaran2012-01-101-4/+4
|\ \ | |/ | | | | <scheme>_proxy environ variable case does not matter.
| * Issue9637 - Explain in getproxies_environment that <scheme>_proxy environ ↵Senthil Kumaran2012-01-101-4/+4
| | | | | | | | variable case does not matter.
* | Merge 3.2Florent Xicluna2011-10-281-2/+2
|\ \ | |/