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
version(Python_2_5_Or_Later)
setentry* table;

Meta