diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2005-06-01 15:26:24 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2005-06-01 15:26:24 (GMT) |
commit | 597bd60ef1b2e25048d4303e643ea359bb373243 (patch) | |
tree | dd8ab36b5c33953b15368aa8c045fb9a9e6577f8 /Doc/lib | |
parent | da85a90808abd6315fcb83b51f37ee611452b88e (diff) | |
download | cpython-597bd60ef1b2e25048d4303e643ea359bb373243.zip cpython-597bd60ef1b2e25048d4303e643ea359bb373243.tar.gz cpython-597bd60ef1b2e25048d4303e643ea359bb373243.tar.bz2 |
[Bug #1194249] Fix duplicate assignment in example code
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/liburllib.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/liburllib.tex b/Doc/lib/liburllib.tex index f41b26c..dafdd91 100644 --- a/Doc/lib/liburllib.tex +++ b/Doc/lib/liburllib.tex @@ -97,7 +97,7 @@ settings to be used as discussed above. For example: \begin{verbatim} # Use http://www.someproxy.com:3128 for http proxying -proxies = proxies={'http': 'http://www.someproxy.com:3128'} +proxies = {'http': 'http://www.someproxy.com:3128'} filehandle = urllib.urlopen(some_url, proxies=proxies) # Don't use any proxies filehandle = urllib.urlopen(some_url, proxies={}) |