Searched refs:__instancecheck__ (Results 1 - 10 of 10) sorted by relevance
/third_party/python/Lib/ |
H A D | abc.py | 117 def __instancecheck__(cls, instance): member in .ABCMeta
|
H A D | _py_abc.py | 92 def __instancecheck__(cls, instance): member in ABCMeta
|
H A D | typing.py | 470 def __instancecheck__(self, obj): member in _SpecialForm 489 def __instancecheck__(self, obj): member in _AnyMeta 492 return super().__instancecheck__(obj) 1297 def __instancecheck__(self, obj): member in _BaseGenericAlias 1674 def __instancecheck__(self, obj): member in _UnionGenericAlias 1975 def __instancecheck__(cls, instance): member in _ProtocolMeta 1997 return super().__instancecheck__(instance) 2996 __instancecheck__ = __subclasscheck__ variable in _TypedDictMeta
|
H A D | ast.py | 531 def __instancecheck__(cls, inst): member in _ABC 544 return type.__instancecheck__(cls, inst)
|
/third_party/python/Lib/test/ |
H A D | test_typechecks.py | 1 """Unit tests for __instancecheck__ and __subclasscheck__.""" 8 def __instancecheck__(cls, inst): member in ABC
|
H A D | test_types.py | 769 def __instancecheck__(cls, inst): member in UnionTests.test_bad_instancecheck.BadMeta
|
/third_party/protobuf/python/google/protobuf/ |
H A D | descriptor.py | 66 def __instancecheck__(cls, obj): member in TypeTransformationError.DescriptorMetaclass 67 if super(DescriptorMetaclass, cls).__instancecheck__(obj):
|
/third_party/python/Include/internal/ |
H A D | pycore_global_strings.h | 126 STRUCT_FOR_ID(__instancecheck__)
|
H A D | pycore_runtime_init.h | 749 INIT_ID(__instancecheck__), \
|
/third_party/python/Objects/ |
H A D | abstract.c | 2624 /* We know what type's __instancecheck__ does. */ in object_recursive_isinstance() 2636 if (_Py_EnterRecursiveCallTstate(tstate, " in __instancecheck__")) { in object_recursive_isinstance() 2653 PyObject *checker = _PyObject_LookupSpecial(cls, &_Py_ID(__instancecheck__)); in object_recursive_isinstance() 2655 if (_Py_EnterRecursiveCallTstate(tstate, " in __instancecheck__")) { in object_recursive_isinstance() 2676 /* cls has no __instancecheck__() method */ in object_recursive_isinstance()
|
Completed in 67 milliseconds