()
| 327 | results = [] |
| 328 | |
| 329 | def get_snapshot(): |
| 330 | for _ in range(1000): |
| 331 | snapshot = f._get_snapshot() |
| 332 | results.append(snapshot) |
| 333 | |
| 334 | threads = [threading.Thread(target=get_snapshot) for _ in range(4)] |
| 335 | with threading_helper.start_threads(threads): |
nothing calls this directly
no test coverage detected