Mercurial > public > mercurial-scm > hg
comparison mercurial/sshrepo.py @ 11596:47ca289a3a08
ssh: drop some old imports
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 15 Jul 2010 15:06:45 -0500 |
parents | 26e0782b8380 |
children | c327bfa5e831 |
comparison
equal
deleted
inserted
replaced
11595:368cd5325348 | 11596:47ca289a3a08 |
---|---|
3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | 3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> |
4 # | 4 # |
5 # This software may be used and distributed according to the terms of the | 5 # This software may be used and distributed according to the terms of the |
6 # GNU General Public License version 2 or any later version. | 6 # GNU General Public License version 2 or any later version. |
7 | 7 |
8 from node import bin, hex | |
9 from i18n import _ | 8 from i18n import _ |
10 import repo, util, error, encoding, wireproto | 9 import repo, util, error, wireproto |
11 import re, urllib | 10 import re |
12 | 11 |
13 class remotelock(object): | 12 class remotelock(object): |
14 def __init__(self, repo): | 13 def __init__(self, repo): |
15 self.repo = repo | 14 self.repo = repo |
16 def release(self): | 15 def release(self): |