Lines Matching defs:obj
102 PySliceObject *obj = interp->slice_cache;
103 if (obj != NULL) {
105 PyObject_GC_Del(obj);
127 PySliceObject *obj;
129 obj = interp->slice_cache;
131 _Py_NewReference((PyObject *)obj);
134 obj = PyObject_GC_New(PySliceObject, &PySlice_Type);
135 if (obj == NULL) {
141 obj->step = step;
143 obj->start = start;
145 obj->stop = stop;
147 _PyObject_GC_TRACK(obj);
148 return (PyObject *) obj;