/third_party/python/Lib/ |
D | abc.py | 117 def __instancecheck__(cls, instance): member in ABCMeta
|
D | _py_abc.py | 92 def __instancecheck__(cls, instance): member in ABCMeta
|
D | typing.py | 394 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
|
D | ast.py | 523 def __instancecheck__(cls, inst): member in _ABC 536 return type.__instancecheck__(cls, inst)
|
/third_party/python/Lib/test/ |
D | test_typechecks.py | 8 def __instancecheck__(cls, inst): member in ABC
|
D | test_types.py | 717 def __instancecheck__(cls, inst): member in UnionTests.test_bad_instancecheck.BadMeta
|
/third_party/protobuf/python/google/protobuf/ |
D | descriptor.py | 66 def __instancecheck__(cls, obj): member in DescriptorMetaclass 67 if super(DescriptorMetaclass, cls).__instancecheck__(obj):
|
/third_party/boost/tools/build/src/build/ |
D | property.py | 75 def __instancecheck__(self, instance): member in PropertyMeta
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0rc1.rst | 154 Fix ``__instancecheck__`` and ``__subclasscheck__`` for the union type.
|
/third_party/python/Doc/c-api/ |
D | object.rst | 239 If *cls* has a :meth:`~class.__instancecheck__` method, it will be called to
|
/third_party/python/Objects/ |
D | abstract.c | 2634 _Py_IDENTIFIER(__instancecheck__); in object_recursive_isinstance()
|
/third_party/python/Tools/c-analyzer/ |
D | TODO | 334 Objects/abstract.c:PyObject_IsInstance():PyId___instancecheck__ _Py_IDENTIFIER(__instancecheck__)
|
/third_party/python/Doc/reference/ |
D | datamodel.rst | 2168 .. method:: class.__instancecheck__(self, instance) 2191 :func:`issubclass` behavior through :meth:`~class.__instancecheck__` and
|
/third_party/python/Doc/library/ |
D | unittest.mock.rst | 2045 * ``__prepare__``, ``__instancecheck__``, ``__subclasscheck__``, ``__del__``
|
/third_party/python/Misc/ |
D | HISTORY | 16306 match Python 2.5 speed despite the __instancecheck__ / __subclasscheck__ 16309 __instancecheck__ / __subclasscheck__ on the tuple rather than on each
|