Mercurial > p > roundup > code
view roundup/anypy/urllib_.py @ 6661:18445cd132c8
Add .pytest_cache to .hgignore
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Tue, 03 May 2022 16:27:39 +0200 |
| parents | 7b194e35d332 |
| children | 07ce4e4110f5 |
line wrap: on
line source
try: # Python 3+ from urllib.parse import quote, unquote, urlencode, urlparse, parse_qs, \ urlunparse from urllib.request import urlopen except ImportError: # Python 2.5-2.7 from urllib import quote, unquote, urlencode from urllib2 import urlopen from urlparse import urlparse, parse_qs, urlunparse
