blob: 9084b3c2bfd747f2d93a483703895cf5e72bf633 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# flake8: noqa: F405
from urllib import * # noqa: F403
del request # noqa: F821
from . import request # noqa: F401
from ..compat_utils import passthrough_module
passthrough_module(__name__, 'urllib')
del passthrough_module
|