public combinationsWithReplacementDerived(PyType subtype) { super(subtype); slots = new PyObject[subtype.getNumSlots()]; dict = subtype.instDict(); if (subtype.needsFinalizer()) { FinalizeTrigger.ensureFinalizer(this); } }
public WithDerived(PyType subtype) { super(subtype); slots = new PyObject[subtype.getNumSlots()]; dict = subtype.instDict(); }
public PyLocalDerived(PyType subtype) { super(subtype); slots = new PyObject[subtype.getNumSlots()]; }