mirror of
https://github.com/httpie/cli.git
synced 2024-11-25 17:23:25 +01:00
20 lines
377 B
Python
20 lines
377 B
Python
"""
|
|
Python 2/3 compatibility.
|
|
|
|
"""
|
|
#noinspection PyUnresolvedReferences
|
|
from requests.compat import (
|
|
is_windows,
|
|
bytes,
|
|
str,
|
|
is_py3,
|
|
is_py26,
|
|
)
|
|
|
|
try:
|
|
#noinspection PyUnresolvedReferences,PyCompatibility
|
|
from urllib.parse import urlsplit
|
|
except ImportError:
|
|
#noinspection PyUnresolvedReferences,PyCompatibility
|
|
from urlparse import urlsplit
|