mercurial/chgserver.py
changeset 43554 9f70512ae2cf
parent 43106 d783f945a701
child 43665 975e517451a6
equal deleted inserted replaced
43553:47fac1692ede 43554:9f70512ae2cf
   343             raise error.ProgrammingError(b'invalid S channel type: %s' % type)
   343             raise error.ProgrammingError(b'invalid S channel type: %s' % type)
   344 
   344 
   345 
   345 
   346 _iochannels = [
   346 _iochannels = [
   347     # server.ch, ui.fp, mode
   347     # server.ch, ui.fp, mode
   348     (b'cin', b'fin', r'rb'),
   348     (b'cin', b'fin', 'rb'),
   349     (b'cout', b'fout', r'wb'),
   349     (b'cout', b'fout', 'wb'),
   350     (b'cerr', b'ferr', r'wb'),
   350     (b'cerr', b'ferr', 'wb'),
   351 ]
   351 ]
   352 
   352 
   353 
   353 
   354 class chgcmdserver(commandserver.server):
   354 class chgcmdserver(commandserver.server):
   355     def __init__(
   355     def __init__(