Open
Description
Now that we are using PYSTACK, investigate whether turning on MICROPY_STACKLESS
is a significant performance improvement.
From py/mpconfig.h
:
// Avoid using C stack when making Python function calls. C stack still
// may be used if there's no free heap.
#ifndef MICROPY_STACKLESS
#define MICROPY_STACKLESS (0)
#endif
Suggested by Damien to Scott.