Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/httprepo.py @ 6212:e75aab656f46
Remove unused imports
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Thu, 06 Mar 2008 22:23:41 +0100 |
parents | f89fd07fc51d |
children | 4b81eecc8aa2 |
comparison
equal
deleted
inserted
replaced
6211:f89fd07fc51d | 6212:e75aab656f46 |
---|---|
8 | 8 |
9 from node import bin, hex | 9 from node import bin, hex |
10 from remoterepo import remoterepository | 10 from remoterepo import remoterepository |
11 from i18n import _ | 11 from i18n import _ |
12 import repo, os, urllib, urllib2, urlparse, zlib, util, httplib | 12 import repo, os, urllib, urllib2, urlparse, zlib, util, httplib |
13 import errno, keepalive, tempfile, socket, changegroup | 13 import errno, keepalive, socket, changegroup |
14 | 14 |
15 class passwordmgr(urllib2.HTTPPasswordMgrWithDefaultRealm): | 15 class passwordmgr(urllib2.HTTPPasswordMgrWithDefaultRealm): |
16 def __init__(self, ui): | 16 def __init__(self, ui): |
17 urllib2.HTTPPasswordMgrWithDefaultRealm.__init__(self) | 17 urllib2.HTTPPasswordMgrWithDefaultRealm.__init__(self) |
18 self.ui = ui | 18 self.ui = ui |