This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Minor bug in urllib docs
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, georg.brandl
Priority: normal Keywords:

Created on 2005-05-03 06:31 by georg.brandl, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg25218 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2005-05-03 06:31
The urllib docs contain an example which starts as follows:

# Use http://www.someproxy.com:3128 for http proxying
proxies = proxies={'http': 'http://www.someproxy.com:3128'}
filehandle = urllib.urlopen(some_url, proxies=proxies)

The double "proxies=" is most likely a mistake and
should be removed.
msg25219 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2005-06-01 15:28
Logged In: YES 
user_id=11375

Fixed committed to CVS HEAD, and to the 2.4 and 2.3 branches.  Thanks 
for the report!
History
Date User Action Args
2022-04-11 14:56:11adminsetgithub: 41942
2005-05-03 06:31:17georg.brandlcreate