[email protected] wrote: >> def write_to_pipe(line): >> hexbytes = ''.join('\\x%02x' % ord(c) for c in line)
I thought this was only needed to have 'echo' except your data.
>> with open('/tmp/mypipe', 'w') as f:
>> f.write(hexbytes)
> Update:
> with a fix in the pipe THIS was the right way to do it, and it now works.
> Thanks a lot Serhiy to you and to everyone else.
Do you mind telling us what fix you applied?
--
http://mail.python.org/mailman/listinfo/python-list
