Home | History | Annotate | Download | only in Objects

Lines Matching defs:newobj

4070     PyLongObject *tmp, *newobj;
4081 newobj = (PyLongObject *)type->tp_alloc(type, n);
4082 if (newobj == NULL) {
4086 assert(PyLong_Check(newobj));
4087 Py_SIZE(newobj) = Py_SIZE(tmp);
4089 newobj->ob_digit[i] = tmp->ob_digit[i];
4091 return (PyObject *)newobj;