(self, consts, value)
| 1183 | class CodeConstsTest(unittest.TestCase): |
| 1184 | |
| 1185 | def find_const(self, consts, value): |
| 1186 | for v in consts: |
| 1187 | if v == value: |
| 1188 | return v |
| 1189 | self.assertIn(value, consts) # raises an exception |
| 1190 | self.fail('Should never be reached') |
| 1191 | |
| 1192 | def assertIsInterned(self, s): |
| 1193 | if not isinterned(s): |
no test coverage detected