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