view roundup/anypy/urllib_.py @ 6088:00a24243887c

Remove redundant permission check
author Ralf Schlatterbeck <rsc@runtux.com>
date Wed, 12 Feb 2020 16:00:59 +0100
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/