Home
last modified time | relevance | path

Searched refs:install_opener (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/test/
Dtest_urllib2_localnet.py307 urllib.request.install_opener(urllib.request.build_opener(ah))
316 urllib.request.install_opener(urllib.request.build_opener(ah))
/third_party/python/Doc/howto/
Durllib2.rst445 ``install_opener`` can be used to make an ``opener`` object the (global) default
451 ``install_opener``, except as a convenience.
511 urllib.request.install_opener(opener)
543 >>> urllib.request.install_opener(opener)
/third_party/python/Doc/library/
Durllib.request.rst125 .. function:: install_opener(opener)
1260 urllib.request.install_opener(opener)
/third_party/python/Lib/urllib/
Drequest.py218 def install_opener(opener): function