Home
last modified time | relevance | path

Searched refs:PyList_MAXFREELIST (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dlistobject.c94 #ifndef PyList_MAXFREELIST
95 #define PyList_MAXFREELIST 80 macro
97 static PyListObject *free_list[PyList_MAXFREELIST];
313 if (numfree < PyList_MAXFREELIST && PyList_CheckExact(op)) in list_dealloc()
/external/python/cpython3/Objects/
Dlistobject.c103 #ifndef PyList_MAXFREELIST
104 #define PyList_MAXFREELIST 80 macro
106 static PyListObject *free_list[PyList_MAXFREELIST];
328 if (numfree < PyList_MAXFREELIST && PyList_CheckExact(op)) in list_dealloc()