Lines Matching defs:recycle
1781 PyObject* recycle = NULL;
1814 /* recycle is a list that will contain all the children
1817 if (!(recycle = PyList_New(slicelen))) {
1837 PyList_SET_ITEM(recycle, i, self->extra->children[cur]);
1856 /* Discard the recycle list with all the deleted sub-elements */
1857 Py_DECREF(recycle);
1883 /* Resize before creating the recycle bin, to prevent refleaks. */
1902 old items to the recycle bin here, and get rid of them when
1904 recycle = PyList_New(slicelen);
1905 if (!recycle) {
1911 PyList_SET_ITEM(recycle, i, self->extra->children[cur]);
1936 /* discard the recycle bin, and everything in it */
1937 Py_XDECREF(recycle);