Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_support.py373 missing_items = support.detect_api_mismatch(self.RefClass,
377 missing_items = support.detect_api_mismatch(self.OtherClass,
384 missing_items = support.detect_api_mismatch(
388 missing_items = support.detect_api_mismatch(
Dtest_io.py1019 mismatch = support.detect_api_mismatch(pyio.RawIOBase, io.RawIOBase,
1025 mismatch = support.detect_api_mismatch(io.RawIOBase, pyio.RawIOBase)
/external/python/cpython3/Lib/test/support/
D__init__.py2489 def detect_api_mismatch(ref_api, other_api, *, ignore=()): function
/external/python/cpython3/Doc/library/
Dtest.rst1112 .. function:: detect_api_mismatch(ref_api, other_api, *, ignore=())