Lines Matching refs:report
1155 # The following line is included in the traceback report:
1165 # The following line is included in the traceback report:
1177 report = stderr.getvalue()
1178 self.assertIn("Exception ignored", report)
1179 self.assertIn(test_class.__del__.__qualname__, report)
1180 self.assertIn("test_sys.py", report)
1181 self.assertIn("raise exc", report)
1183 self.assertIn("BrokenStrException", report)
1184 self.assertIn("<exception str() failed>", report)
1186 self.assertIn("ValueError", report)
1187 self.assertIn("del is broken", report)
1188 self.assertTrue(report.endswith("\n"))
1209 report = stderr.getvalue()
1210 self.assertIn(A.B.X.__qualname__, report)
1212 self.assertNotIn(moduleName + '.', report)
1214 self.assertIn(moduleName + '.', report)