()
| 82 | |
| 83 | |
| 84 | def pop_from_output_queue(): |
| 85 | if tn_globals.OutputQueue.empty(): |
| 86 | return False |
| 87 | sys.stdout.write("\r<= "+tn_globals.OutputQueue.get()) |
| 88 | sys.stdout.flush() |
| 89 | return True |
| 90 | |
| 91 | |
| 92 | # Generator of protobuf messages. |
no test coverage detected
searching dependent graphs…