Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
ThePyObject_GC_Resize implementation in the main branch doesn't check if the object has a preheader:
Lines 2357 to 2358 in0ef92d9
| PyGC_Head*g=AS_GC(op); | |
| g= (PyGC_Head*)PyObject_Realloc(g,sizeof(PyGC_Head)+basicsize); |
The only internal use I see is by_PyTuple_Resize which doesn't have a preheader, but thePyObject_GC_Resize function is publicly documented.