(self)
| 1199 | |
| 1200 | @cpython_only |
| 1201 | def test_interned_string(self): |
| 1202 | co = compile('res = "str_value"', '?', 'exec') |
| 1203 | v = self.find_const(co.co_consts, 'str_value') |
| 1204 | self.assertIsInterned(v) |
| 1205 | |
| 1206 | @cpython_only |
| 1207 | def test_interned_string_in_tuple(self): |
nothing calls this directly
no test coverage detected