Lines Matching defs:obj
51 rangeobject *obj = NULL;
57 obj = PyObject_New(rangeobject, type);
58 if (obj == NULL) {
62 obj->start = start;
63 obj->stop = stop;
64 obj->step = step;
65 obj->length = length;
66 return obj;
77 rangeobject *obj;
122 obj = make_range_object(type, start, stop, step);
123 if (obj != NULL) {
124 return (PyObject *) obj;