• Victor Stinner's avatar
    Close #18469: Replace PyDict_GetItemString() with _PyDict_GetItemId() in structseq.c · 26f91999
    Victor Stinner yazdı
    _PyDict_GetItemId() is more efficient: it only builds the Unicode string once.
    Identifiers (dictionary keys) are now created at Python initialization, and if
    the creation failed, Python does exit with a fatal error.
    
    Before, PyDict_GetItemString() failure was not handled: structseq_new() could
    call PyObject_GC_NewVar() with a negative size, and structseq_dealloc() could
    also crash.
    26f91999
pythonrun.c 74.2 KB