comparison mercurial/sshrepo.py @ 3044:fcadf7a32425

Merge with mpm
author Josef "Jeff" Sipek <jeffpc@josefsipek.net>
date Sun, 03 Sep 2006 06:06:02 -0400
parents 345bac2bc4ec
children 2b0bc36a48d8
comparison
equal deleted inserted replaced
3043:2a4d4aecb2b4 3044:fcadf7a32425
1 # sshrepo.py - ssh repository proxy class for mercurial 1 # sshrepo.py - ssh repository proxy class for mercurial
2 # 2 #
3 # Copyright 2005 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 5 # This software may be used and distributed according to the terms
6 # of the GNU General Public License, incorporated herein by reference. 6 # of the GNU General Public License, incorporated herein by reference.
7 7
8 from node import * 8 from node import *
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