(self)
| 1205 | |
| 1206 | @cpython_only |
| 1207 | def test_interned_string_in_tuple(self): |
| 1208 | co = compile('res = ("str_value",)', '?', 'exec') |
| 1209 | v = self.find_const(co.co_consts, ('str_value',)) |
| 1210 | self.assertIsInterned(v[0]) |
| 1211 | |
| 1212 | @cpython_only |
| 1213 | def test_interned_string_in_frozenset(self): |
nothing calls this directly
no test coverage detected