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: |