eric6/E5Network/E5RFC6266.py

branch
without_py2_and_pyqt4
changeset 7192
a22eee00b052
parent 6942
2602857055c5
child 7229
53054eb5b15a
equal deleted inserted replaced
7191:960850ec284c 7192:a22eee00b052
13 # <mail@qutebrowser.org> 13 # <mail@qutebrowser.org>
14 # 14 #
15 15
16 from __future__ import unicode_literals 16 from __future__ import unicode_literals
17 17
18 try: # Py3 18 import urllib.parse as parse
19 import urllib.parse as parse
20 except (ImportError):
21 import urlparse as parse # __IGNORE_WARNING__
22 import collections 19 import collections
23 import string 20 import string
24 import re 21 import re
25 22
26 try: 23 try:

eric ide

mercurial