Home
last modified time | relevance | path

Searched refs:detect_api_mismatch (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/test/
Dtest_support.py402 missing_items = support.detect_api_mismatch(self.RefClass,
406 missing_items = support.detect_api_mismatch(self.OtherClass,
413 missing_items = support.detect_api_mismatch(
417 missing_items = support.detect_api_mismatch(
Dtest_io.py1049 mismatch = support.detect_api_mismatch(pyio.RawIOBase, io.RawIOBase,
1055 mismatch = support.detect_api_mismatch(io.RawIOBase, pyio.RawIOBase)
/third_party/python/Lib/test/support/
D__init__.py1424 def detect_api_mismatch(ref_api, other_api, *, ignore=()): function
/third_party/python/Doc/library/
Dtest.rst842 .. function:: detect_api_mismatch(ref_api, other_api, *, ignore=())