Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/sshrepo.py @ 2740:386f04d6ecb3
clean up hg.py: move repo constructor code into each repo module
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Mon, 31 Jul 2006 07:11:12 -0700 |
parents | 109a22f5434a |
children | 345bac2bc4ec |
comparison
equal
deleted
inserted
replaced
2739:3248aa10b388 | 2740:386f04d6ecb3 |
---|---|
202 return 1 | 202 return 1 |
203 return int(r) | 203 return int(r) |
204 | 204 |
205 def stream_out(self): | 205 def stream_out(self): |
206 return self.do_cmd('stream_out') | 206 return self.do_cmd('stream_out') |
207 | |
208 instance = sshrepository |