(self)
| 1211 | |
| 1212 | @cpython_only |
| 1213 | def test_interned_string_in_frozenset(self): |
| 1214 | co = compile('res = a in {"str_value"}', '?', 'exec') |
| 1215 | v = self.find_const(co.co_consts, frozenset(('str_value',))) |
| 1216 | self.assertIsInterned(tuple(v)[0]) |
| 1217 | |
| 1218 | @cpython_only |
| 1219 | def test_interned_string_default(self): |
nothing calls this directly
no test coverage detected