Helper function for printing out debugging output.
(arg)
| 18 | _print_mutex = thread.allocate_lock() |
| 19 | |
| 20 | def verbose_print(arg): |
| 21 | """Helper function for printing out debugging output.""" |
| 22 | if support.verbose: |
| 23 | with _print_mutex: |
| 24 | print(arg) |
| 25 | |
| 26 | |
| 27 | class BasicThreadTest(unittest.TestCase): |
no outgoing calls
no test coverage detected
searching dependent graphs…