PySetObject.table

table points to smalltable for small tables, else to additional malloc'ed memory. table is never NULL! This rule saves repeated runtime null-tests.

struct PySetObject
setentry* table;

Meta