(self, s)
| 1194 | self.fail('String %r is not interned' % (s,)) |
| 1195 | |
| 1196 | def assertIsNotInterned(self, s): |
| 1197 | if isinterned(s): |
| 1198 | self.fail('String %r is interned' % (s,)) |
| 1199 | |
| 1200 | @cpython_only |
| 1201 | def test_interned_string(self): |
no test coverage detected