(self)
| 1877 | @support.cpython_only |
| 1878 | @unittest.skipUnless(ssl.HAS_PSK, 'requires TLS-PSK') |
| 1879 | def test_refcycle_psk_server_callback(self): |
| 1880 | # See https://github.com/python/cpython/issues/142516. |
| 1881 | ctx = make_test_context(server_side=True) |
| 1882 | def psk_server_callback(*args, _=ctx, **kwargs): ... |
| 1883 | ctx.set_psk_server_callback(psk_server_callback) |
| 1884 | |
| 1885 | |
| 1886 | class SSLErrorTests(unittest.TestCase): |
nothing calls this directly
no test coverage detected