Submitter | Yuya Nishihara |
---|---|
Date | Dec. 17, 2015, 2:09 p.m. |
Message ID | <2277a47b0044907d346e.1450361361@mimosa> |
Download | mbox | patch |
Permalink | /patch/12096/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/commandserver.py b/mercurial/commandserver.py --- a/mercurial/commandserver.py +++ b/mercurial/commandserver.py @@ -43,6 +43,10 @@ class channeledoutput(object): self.out = out self.channel = channel + @property + def name(self): + return '<%c-channel>' % self.channel + def write(self, data): if not data: return @@ -75,6 +79,10 @@ class channeledinput(object): self.out = out self.channel = channel + @property + def name(self): + return '<%c-channel>' % self.channel + def read(self, size=-1): if size < 0: # if we need to consume all the clients input, ask for 4k chunks