diff options
Diffstat (limited to 'Python/Dependencies/future-0.18.2/src/future/moves/urllib/robotparser.py')
| -rw-r--r-- | Python/Dependencies/future-0.18.2/src/future/moves/urllib/robotparser.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Python/Dependencies/future-0.18.2/src/future/moves/urllib/robotparser.py b/Python/Dependencies/future-0.18.2/src/future/moves/urllib/robotparser.py new file mode 100644 index 0000000..0dc8f57 --- /dev/null +++ b/Python/Dependencies/future-0.18.2/src/future/moves/urllib/robotparser.py @@ -0,0 +1,8 @@ +from __future__ import absolute_import +from future.utils import PY3 + +if PY3: + from urllib.robotparser import * +else: + __future_module__ = True + from robotparser import * |
