view roundup/anypy/urllib_.py @ 6541:c8f3ec942e29

Test case where there is no content-encoding. Make sure etag header is un-suffixed.
author John Rouillard <rouilj@ieee.org>
date Wed, 01 Dec 2021 22:00:41 -0500
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

Roundup Issue Tracker: http://roundup-tracker.org/