2023-05-27 07:17:27 +00:00
|
|
|
# flake8: noqa: F405
|
|
|
|
from urllib import * # noqa: F403
|
|
|
|
|
2023-09-23 20:00:31 +00:00
|
|
|
del request # noqa: F821
|
2023-07-22 12:26:53 +00:00
|
|
|
from . import request # noqa: F401
|
|
|
|
|
2023-05-27 07:17:27 +00:00
|
|
|
from ..compat_utils import passthrough_module
|
|
|
|
|
|
|
|
passthrough_module(__name__, 'urllib')
|
|
|
|
del passthrough_module
|