Guido van Rossum <gvanros...@gmail.com> added the comment:

To me it looks simpler though. The locals and cells are already stored in a 
single array, f_localsplus (which also contains the evaluation stack). There 
are various complications in ceval.c to translate cell indexes to indexes in 
this array (ein particular the extra local variable 'freevars', which weighs 
down the stack frame).

Making the interpreter simpler by moving things to the compiler also makes it 
easier for the C compiler to optimize the code of the interpreter better.

----------
nosy: +Guido.van.Rossum

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

Reply via email to