Cursor fix #386

Merged
eoso merged 2 commits from cursor-fix into master 2018-05-07 08:35:26 -07:00
Showing only changes of commit 0b3df413d8 - Show all commits

View file

@ -25,7 +25,7 @@ except ImportError:
if is_py2:
from urllib import urlencode, quote_plus
from urlparse import parse_qsl
from urlparse import parse_qsl, urlsplit
str = unicode
basestring = basestring
@ -33,7 +33,7 @@ if is_py2:
elif is_py3:
from urllib.parse import urlencode, quote_plus, parse_qsl
from urllib.parse import urlencode, quote_plus, parse_qsl, urlsplit
str = str
basestring = (str, bytes)