Mercurial > p > roundup > code
view roundup/anypy/urllib_.py @ 7458:fe16ff1bede5
Add extra explanation for SQL command in 1.3.3->1.4.0 upgrade path
A user on IRC was confused as to where/how to add indexes. Try to clarify.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 07 Jun 2023 10:32:21 -0400 |
| parents | 07ce4e4110f5 |
| children | d5d7ecd31864 |
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 # noqa: F401 from urllib2 import urlopen # noqa: F401 from urlparse import urlparse, parse_qs, urlunparse # noqa: F401
