(self, res)
| 1212 | assert_python_failure('-X', 'importtime=3', '-c', code) |
| 1213 | |
| 1214 | def res2int(self, res): |
| 1215 | out = res.out.strip().decode("utf-8") |
| 1216 | return tuple(int(i) for i in out.split()) |
| 1217 | |
| 1218 | @unittest.skipUnless(support.Py_GIL_DISABLED, |
| 1219 | "PYTHON_TLBC and -X tlbc" |
no test coverage detected