Home
last modified time | relevance | path

Searched refs:COPYSEQ (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dtypeobject.c3934 #undef COPYSEQ
3946 #define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT) macro
4006 COPYSEQ(sq_length);
4007 COPYSEQ(sq_concat);
4008 COPYSEQ(sq_repeat);
4009 COPYSEQ(sq_item);
4010 COPYSEQ(sq_slice);
4011 COPYSEQ(sq_ass_item);
4012 COPYSEQ(sq_ass_slice);
4013 COPYSEQ(sq_contains);
[all …]
/external/python/cpython3/Objects/
Dtypeobject.c4946 #undef COPYSEQ in inherit_slots()
4959 #define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT) in inherit_slots() macro
5020 COPYSEQ(sq_length); in inherit_slots()
5021 COPYSEQ(sq_concat); in inherit_slots()
5022 COPYSEQ(sq_repeat); in inherit_slots()
5023 COPYSEQ(sq_item); in inherit_slots()
5024 COPYSEQ(sq_ass_item); in inherit_slots()
5025 COPYSEQ(sq_contains); in inherit_slots()
5026 COPYSEQ(sq_inplace_concat); in inherit_slots()
5027 COPYSEQ(sq_inplace_repeat); in inherit_slots()