| .. | |||||
| __pycache__ | |||||
| __init__.py | |||||
| error.py | |||||
| parse.py | |||||
| request.py | |||||
| response.py | |||||
| robotparser.py |
from future import standard_library
from future.utils import PY3
if PY3:
from urllib.response import *
else:
__future_module__ = True
with standard_library.suspend_hooks():
from urllib import (addbase,
addclosehook,
addinfo,
addinfourl)
| .. | |||||
| __pycache__ | |||||
| __init__.py | |||||
| error.py | |||||
| parse.py | |||||
| request.py | |||||
| response.py | |||||
| robotparser.py |