comparison mercurial/commandserver.py @ 22561:1120b1e2f975

cmdserver: correct doc of channeledoutput in_ is only used as the source of file attributes.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 27 Sep 2014 12:15:01 +0900
parents 9336bc7dca8e
children 2d85e664c377
comparison
equal deleted inserted replaced
22560:4109cc16279e 22561:1120b1e2f975
21 21
22 logfile.flush() 22 logfile.flush()
23 23
24 class channeledoutput(object): 24 class channeledoutput(object):
25 """ 25 """
26 Write data from in_ to out in the following format: 26 Write data to out in the following format:
27 27
28 data length (unsigned int), 28 data length (unsigned int),
29 data 29 data
30 """ 30 """
31 def __init__(self, in_, out, channel): 31 def __init__(self, in_, out, channel):