()
| 14 | |
| 15 | |
| 16 | def main(): |
| 17 | threads = [] |
| 18 | for i in range(20): |
| 19 | threads.append(threading.Thread(target=t)) |
| 20 | for thread in threads: |
| 21 | thread.start() |
| 22 | for thread in threads: |
| 23 | thread.join() |
| 24 | |
| 25 | |
| 26 | if __name__ == "__main__": |
no test coverage detected
searching dependent graphs…