()
| 30 | |
| 31 | @pytest.mark.skipif(sys.platform.startswith("emscripten"), reason="Requires threads") |
| 32 | def test_implicit_conversion(): |
| 33 | a = Thread(m.test) |
| 34 | b = Thread(m.test) |
| 35 | c = Thread(m.test) |
| 36 | for x in [a, b, c]: |
| 37 | x.start() |
| 38 | for x in [c, b, a]: |
| 39 | x.join() |
| 40 | |
| 41 | |
| 42 | @pytest.mark.skipif(sys.platform.startswith("emscripten"), reason="Requires threads") |