Commit 12a9ca81 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 4a46d011
......@@ -485,7 +485,7 @@ class tWatch:
while 1:
# NOTE: .close() makes sure .wrx.read*() will wake up
l = t.wrx.readline()
print('C: watch : rx: %r' % l)
#print('C: watch : rx: %r' % l)
if len(l) == 0:
break # closed
......@@ -525,7 +525,7 @@ class tWatch:
assert '\n' not in msg
with t._txmu:
pkt = b"%d %s\n" % (stream, msg)
print('C: watch : tx: %r' % pkt)
#print('C: watch : tx: %r' % pkt)
t.wtx.write(pkt)
t.wtx.flush()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment