Lines Matching refs:mismatch
922 mismatch = support.detect_api_mismatch(pyio.RawIOBase, io.RawIOBase,
924 self.assertEqual(mismatch, set(), msg='Python RawIOBase does not have all C RawIOBase methods')
928 mismatch = support.detect_api_mismatch(io.RawIOBase, pyio.RawIOBase)
929 self.assertEqual(mismatch, set(), msg='C RawIOBase does not have all Python RawIOBase methods')