New submission from Mark Shannon <m...@hotpy.org>:
There are three things we want to do: 1. Speed up pushing and popping frames. See https://github.com/faster-cpython/ideas/issues/111 for details. 2. Avoid tracing and other admin overhead on entering and leaving. See https://github.com/faster-cpython/ideas/issues/112. 3. Keep the remaining recursion depth in the cframe, to reduce the work for a recursion check from `++tstate->recursion_depth > tstate->interp->ceval.recursion_limit` to `cframe.recursion_overhead-- > 0` ---------- assignee: Mark.Shannon components: Interpreter Core messages: 405970 nosy: Mark.Shannon priority: normal severity: normal status: open title: Further speed up Python-to-Python calls. type: performance versions: Python 3.11 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue45753> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com