Home | History | Annotate | Download | only in test

Lines Matching refs:abcmodule

2751     def _check_abc_inheritance(self, abcmodule):
2753 self.assertIsInstance(f, abcmodule.IOBase)
2754 self.assertIsInstance(f, abcmodule.RawIOBase)
2755 self.assertNotIsInstance(f, abcmodule.BufferedIOBase)
2756 self.assertNotIsInstance(f, abcmodule.TextIOBase)
2758 self.assertIsInstance(f, abcmodule.IOBase)
2759 self.assertNotIsInstance(f, abcmodule.RawIOBase)
2760 self.assertIsInstance(f, abcmodule.BufferedIOBase)
2761 self.assertNotIsInstance(f, abcmodule.TextIOBase)
2763 self.assertIsInstance(f, abcmodule.IOBase)
2764 self.assertNotIsInstance(f, abcmodule.RawIOBase)
2765 self.assertNotIsInstance(f, abcmodule.BufferedIOBase)
2766 self.assertIsInstance(f, abcmodule.TextIOBase)