(i)
| 65 | local = Local() |
| 66 | |
| 67 | def f(i): |
| 68 | local.x = i |
| 69 | # Simply check that the variable is correctly set |
| 70 | self.assertEqual(local.x, i) |
| 71 | |
| 72 | with threading_helper.start_threads(threading.Thread(target=f, args=(i,)) |
| 73 | for i in range(10)): |
nothing calls this directly
no test coverage detected