oc-develop_oneteam/venv/lib/python3.11/site-packages/future/moves/urllib/robotparser.py
2024-02-03 21:52:43 -05:00

9 lines
179 B
Python

from __future__ import absolute_import
from future.utils import PY3
if PY3:
from urllib.robotparser import *
else:
__future_module__ = True
from robotparser import *