Home
last modified time | relevance | path

Searched refs:HTTPBasicAuthHandler (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/test/
Dtest_urllib2.py19 from urllib.request import (Request, OpenerDirector, HTTPBasicAuthHandler,
1468 auth_handler = urllib.request.HTTPBasicAuthHandler(password_manager)
1563 class TestBasicAuthHandler(urllib.request.HTTPBasicAuthHandler):
1566 urllib.request.HTTPBasicAuthHandler.http_error_401(self,
1603 basic_auth_handler = urllib.request.HTTPBasicAuthHandler(None)
1657 auth_prior_handler = HTTPBasicAuthHandler(pwd_manager)
1681 auth_prior_handler = HTTPBasicAuthHandler(pwd_manager)
Dtest_urllib2_localnet.py305 ah = urllib.request.HTTPBasicAuthHandler()
314 ah = urllib.request.HTTPBasicAuthHandler()
/third_party/python/Lib/distutils/command/
Dregister.py286 urllib.request.HTTPBasicAuthHandler(password_mgr=auth)
/third_party/python/Doc/howto/
Durllib2.rst458 ``HTTPBasicAuthHandler``. For a more detailed discussion of this subject --
478 ``HTTPBasicAuthHandler`` and an opener to use this handler.
480 The ``HTTPBasicAuthHandler`` uses an object called a password manager to handle
501 handler = urllib.request.HTTPBasicAuthHandler(password_mgr)
515 In the above example we only supplied our ``HTTPBasicAuthHandler`` to
/third_party/python/Doc/library/
Durllib.request.rst367 .. class:: HTTPBasicAuthHandler(password_mgr=None)
372 be supported. HTTPBasicAuthHandler will raise a :exc:`ValueError` when
994 HTTPBasicAuthHandler Objects
998 .. method:: HTTPBasicAuthHandler.http_error_401(req, fp, code, msg, hdrs)
1253 auth_handler = urllib.request.HTTPBasicAuthHandler()
/third_party/python/Lib/urllib/
Drequest.py1050 class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler): class