Home
last modified time | relevance | path

Searched refs:__instancecheck__ (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Lib/
Dabc.py117 def __instancecheck__(cls, instance): member in ABCMeta
D_py_abc.py92 def __instancecheck__(cls, instance): member in ABCMeta
Dtyping.py394 def __instancecheck__(self, obj): member in _SpecialForm
979 def __instancecheck__(self, obj): member in _BaseGenericAlias
1242 def __instancecheck__(self, obj): member in _UnionGenericAlias
1468 def __instancecheck__(cls, instance): member in _ProtocolMeta
1490 return super().__instancecheck__(instance)
2365 __instancecheck__ = __subclasscheck__ variable in _TypedDictMeta
Dast.py523 def __instancecheck__(cls, inst): member in _ABC
536 return type.__instancecheck__(cls, inst)
/third_party/python/Lib/test/
Dtest_typechecks.py8 def __instancecheck__(cls, inst): member in ABC
Dtest_types.py717 def __instancecheck__(cls, inst): member in UnionTests.test_bad_instancecheck.BadMeta
/third_party/protobuf/python/google/protobuf/
Ddescriptor.py66 def __instancecheck__(cls, obj): member in DescriptorMetaclass
67 if super(DescriptorMetaclass, cls).__instancecheck__(obj):
/third_party/boost/tools/build/src/build/
Dproperty.py75 def __instancecheck__(self, instance): member in PropertyMeta
/third_party/python/Misc/NEWS.d/
D3.10.0rc1.rst154 Fix ``__instancecheck__`` and ``__subclasscheck__`` for the union type.
/third_party/python/Doc/c-api/
Dobject.rst239 If *cls* has a :meth:`~class.__instancecheck__` method, it will be called to
/third_party/python/Objects/
Dabstract.c2634 _Py_IDENTIFIER(__instancecheck__); in object_recursive_isinstance()
/third_party/python/Tools/c-analyzer/
DTODO334 Objects/abstract.c:PyObject_IsInstance():PyId___instancecheck__ _Py_IDENTIFIER(__instancecheck__)
/third_party/python/Doc/reference/
Ddatamodel.rst2168 .. method:: class.__instancecheck__(self, instance)
2191 :func:`issubclass` behavior through :meth:`~class.__instancecheck__` and
/third_party/python/Doc/library/
Dunittest.mock.rst2045 * ``__prepare__``, ``__instancecheck__``, ``__subclasscheck__``, ``__del__``
/third_party/python/Misc/
DHISTORY16306 match Python 2.5 speed despite the __instancecheck__ / __subclasscheck__
16309 __instancecheck__ / __subclasscheck__ on the tuple rather than on each