screenshare/venv/lib/python3.12/site-packages/future/moves/http/client.py
2024-11-29 18:15:30 +00:00

9 lines
165 B
Python

from future.utils import PY3
if PY3:
from http.client import *
else:
from httplib import *
from httplib import HTTPMessage
__future_module__ = True