| 191 | """ |
| 192 | |
| 193 | class TestThread(threading.Thread): |
| 194 | def __init__(self, d): |
| 195 | self._d = d |
| 196 | threading.Thread.__init__(self) |
| 197 | |
| 198 | def run(self): |
| 199 | assert "tl" not in self._d._dict |
| 200 | |
| 201 | self._d["tl"] = 23 |
| 202 | |
| 203 | with pytest.deprecated_call(): |
| 204 | d = wrap_dict(dict)() |
no outgoing calls
searching dependent graphs…