modernize icon indicating copy to clipboard operation
modernize copied to clipboard

use six.moves to handle imports from urllib, urllib2 and urlparse

Open daira opened this issue 11 years ago • 1 comments

E.g.

from urlparse import ParseResult

=>

from six.moves.urllib.parse import ParseResult

and

import urlparse
urlparse.ParseResult

=>

import six.moves.urllib.parse as urlparse
urlparse.ParseResult

daira avatar Sep 27 '14 23:09 daira

Do want

zackw avatar Mar 09 '17 17:03 zackw