forked from extern/httpie-cli
1481749c22
Closes #118.
19 lines
264 B
Python
19 lines
264 B
Python
"""
|
|
Python 2/3 compatibility.
|
|
|
|
"""
|
|
#noinspection PyUnresolvedReferences
|
|
from requests.compat import (
|
|
is_windows,
|
|
bytes,
|
|
str,
|
|
is_py3,
|
|
is_py26,
|
|
)
|
|
|
|
try:
|
|
from urllib.parse import urlsplit
|
|
except ImportError:
|
|
from urlparse import urlsplit
|
|
|