()
| 1253 | ctx = ssl.create_default_context() |
| 1254 | |
| 1255 | def race(): |
| 1256 | ctx.load_cert_chain(CERTFILE) |
| 1257 | |
| 1258 | threads = [threading.Thread(target=race) for _ in range(8)] |
| 1259 | with threading_helper.catch_threading_exception() as cm: |
nothing calls this directly
no test coverage detected