1: package org.python.core; 2: 3: public interface Slotted { 4: 5: public PyObject getSlot(int index); 6: 7: public void setSlot(int index, PyObject value); 8: }