(self, what)
| 261 | |
| 262 | @contextlib.contextmanager |
| 263 | def frozendict_does_not_support(self, what): |
| 264 | errmsg = f'frozendict object does not support item {what}' |
| 265 | with self.assertRaisesRegex(TypeError, errmsg): |
| 266 | yield |
| 267 | |
| 268 | def test_dict_setitem(self): |
| 269 | # Test PyDict_SetItem() |
no test coverage detected