]> granicus.if.org Git - python/commitdiff
Fix SF #1703110, Incorrect example for add_password() (use uri, not host)
authorNeal Norwitz <nnorwitz@gmail.com>
Tue, 24 Apr 2007 04:54:24 +0000 (04:54 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Tue, 24 Apr 2007 04:54:24 +0000 (04:54 +0000)
Doc/lib/liburllib2.tex
Lib/urllib2.py

index 542a7b8eabd37d09cbb329083ae694dbc4f098f0..b98e5db3e183c06bc759eea50db351083728b2e4 100644 (file)
@@ -817,7 +817,10 @@ Use of Basic HTTP Authentication:
 import urllib2
 # Create an OpenerDirector with support for Basic HTTP Authentication...
 auth_handler = urllib2.HTTPBasicAuthHandler()
-auth_handler.add_password('realm', 'host', 'username', 'password')
+auth_handler.add_password(realm='PDQ Application',
+                          uri='https://mahler:8092/site-updates.py',
+                          user='klem',
+                          passwd='kadidd!ehopper')
 opener = urllib2.build_opener(auth_handler)
 # ...and install it globally so it can be used with urlopen.
 urllib2.install_opener(opener)
index 4e926a154b423add205019c25b5af1c9b45e4ec1..007e905e755ec6ca6fc1f116c87cba294d56647e 100644 (file)
@@ -55,7 +55,10 @@ import urllib2
 
 # set up authentication info
 authinfo = urllib2.HTTPBasicAuthHandler()
-authinfo.add_password('realm', 'host', 'username', 'password')
+authinfo.add_password(realm='PDQ Application',
+                      uri='https://mahler:8092/site-updates.py',
+                      user='klem',
+                      passwd='geheim$parole')
 
 proxy_support = urllib2.ProxyHandler({"http" : "http://ahad-haam:3128"})