Dennis Sweeney <sweeney.dennis...@gmail.com> added the comment:

Minor nit: I think swaptimize() should check the for PyMem_Malloc returning 
NULL here.

    // Create an array with elements {0, 1, 2, ..., depth - 1}:
    int *stack = PyMem_Malloc(depth * sizeof(int));
    for (int i = 0; i < depth; i++) {
        stack[i] = i;
    }

----------
nosy: +Dennis Sweeney

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue46528>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to