(self)
| 237 | class TestRunExecCounts(unittest.TestCase): |
| 238 | """A simple sanity test of line-counting, via runctx (exec)""" |
| 239 | def setUp(self): |
| 240 | self.my_py_filename = fix_ext_py(__file__) |
| 241 | self.addCleanup(sys.settrace, sys.gettrace()) |
| 242 | |
| 243 | @unittest.skipIf(os.environ.get('PYTHON_UOPS_OPTIMIZE') == '0', |
| 244 | "Line counts differ when JIT optimizer is disabled") |
nothing calls this directly
no test coverage detected