PyHeapTypeObject.as_sequence

as_sequence comes after as_mapping, so that the mapping wins when both the mapping and the sequence define a given operator (e.g. __getitem__). see add_operators() in typeobject.c .

struct PyHeapTypeObject
PySequenceMethods as_sequence;

Meta