(self)
| 1851 | |
| 1852 | @support.cpython_only |
| 1853 | def test_refcycle_msg_callback(self): |
| 1854 | # See https://github.com/python/cpython/issues/142516. |
| 1855 | ctx = make_test_context() |
| 1856 | def msg_callback(*args, _=ctx, **kwargs): ... |
| 1857 | ctx._msg_callback = msg_callback |
| 1858 | |
| 1859 | @support.cpython_only |
| 1860 | @requires_keylog_setter |
nothing calls this directly
no test coverage detected