src/i/r/ironruby-HEAD/External.LCA_RESTRICTED/Languages/IronPython/27/Doc/sphinx/ext/intersphinx.py ironruby(Download)
from sphinx.builders.html import INVENTORY_FILENAME
handlers = [urllib2.ProxyHandler(), urllib2.HTTPRedirectHandler(),
urllib2.HTTPHandler()]
if hasattr(urllib2, 'HTTPSHandler'):
handlers.append(urllib2.HTTPSHandler)
src/z/a/zamboni-lib-HEAD/lib/python/sphinx/ext/intersphinx.py zamboni-lib(Download)
from sphinx.builders.html import INVENTORY_FILENAME
handlers = [urllib2.ProxyHandler(), urllib2.HTTPRedirectHandler(),
urllib2.HTTPHandler()]
if hasattr(urllib2, 'HTTPSHandler'):
handlers.append(urllib2.HTTPSHandler)
src/n/o/noc-0.5/contrib/src/Sphinx/sphinx/ext/intersphinx.py noc(Download)
from sphinx.builders.html import INVENTORY_FILENAME
handlers = [urllib2.ProxyHandler(), urllib2.HTTPRedirectHandler(),
urllib2.HTTPHandler()]
if hasattr(urllib2, 'HTTPSHandler'):
handlers.append(urllib2.HTTPSHandler)
src/f/l/Flask-FluidDB-0.1/env/lib/python2.6/site-packages/sphinx/ext/intersphinx.py Flask-FluidDB(Download)
from sphinx.builders.html import INVENTORY_FILENAME
handlers = [urllib2.ProxyHandler(), urllib2.HTTPRedirectHandler(),
urllib2.HTTPHandler()]
if hasattr(urllib2, 'HTTPSHandler'):
handlers.append(urllib2.HTTPSHandler)
src/p/y/pymonitor-HEAD/plugins/http.py pymonitor(Download)
return urllib2.build_opener(
urllib2.HTTPHandler(),
urllib2.HTTPRedirectHandler(),
urllib2.HTTPCookieProcessor(cookie_jar),
urllib2.HTTPDefaultErrorHandler(),
)
src/s/k/skypy-HEAD/skypy/record.py skypy(Download)
cookies = CookieJar()
cookies.extract_cookies(response, request)
cookie_handler= urllib2.HTTPCookieProcessor(cookies)
redirect_handler= urllib2.HTTPRedirectHandler()
opener = urllib2.build_opener(redirect_handler, cookie_handler)
resp = opener.open(request)
return cookies, resp.read()
src/s/p/Sphinx-1.0.4/sphinx/ext/intersphinx.py Sphinx(Download)
from sphinx.builders.html import INVENTORY_FILENAME
handlers = [urllib2.ProxyHandler(), urllib2.HTTPRedirectHandler(),
urllib2.HTTPHandler()]
if hasattr(urllib2, 'HTTPSHandler'):
handlers.append(urllib2.HTTPSHandler)
src/h/g/hgblog-0.5/sphinx/ext/intersphinx.py hgblog(Download)
from sphinx.builders.html import INVENTORY_FILENAME
handlers = [urllib2.ProxyHandler(), urllib2.HTTPRedirectHandler(),
urllib2.HTTPHandler()]
if hasattr(urllib2, 'HTTPSHandler'):
handlers.append(urllib2.HTTPSHandler)
src/t/p/TPG-checkusage-HEAD/checkusage.py TPG-checkusage(Download)
cookies = CookieJar()
cookies.extract_cookies(response, request)
cookie_handler = urllib2.HTTPCookieProcessor(cookies)
redirect_handler = urllib2.HTTPRedirectHandler()
opener = urllib2.build_opener(redirect_handler,cookie_handler)
try:
src/p/y/pynationalrail-1.0/nationalrail/__init__.py pynationalrail(Download)
cookies = CookieJar()
cookies.extract_cookies(response, request)
cookie_handler= urllib2.HTTPCookieProcessor( cookies )
redirect_handler= urllib2.HTTPRedirectHandler()
opener = urllib2.build_opener(redirect_handler, cookie_handler)
resp = opener.open(request)
return resp.read()
1 | 2 | 3 | 4 | 5 Next