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