Returns a dict wrapped in _ThreadLocalDictWrapper.
()
| 49 | |
| 50 | @pytest.fixture(name="D") |
| 51 | def _D(): |
| 52 | """ |
| 53 | Returns a dict wrapped in _ThreadLocalDictWrapper. |
| 54 | """ |
| 55 | with pytest.deprecated_call(): |
| 56 | return wrap_dict(dict) |
| 57 | |
| 58 | |
| 59 | @pytest.fixture(name="log") |
nothing calls this directly
no test coverage detected