summaryrefslogtreecommitdiffstats
path: root/Include/internal
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2021-06-15 22:35:25 (GMT)
committerGitHub <noreply@github.com>2021-06-15 22:35:25 (GMT)
commitac38a9f2dfbba95f5d4338eb11a0221d38ef9328 (patch)
treecbe976854afe2fc55df27e5134abc9cdc727c601 /Include/internal
parent1d10bf0bb9409a406c56b0de8870df998637fd0f (diff)
downloadcpython-ac38a9f2dfbba95f5d4338eb11a0221d38ef9328.zip
cpython-ac38a9f2dfbba95f5d4338eb11a0221d38ef9328.tar.gz
cpython-ac38a9f2dfbba95f5d4338eb11a0221d38ef9328.tar.bz2
bpo-43693: Eliminate unused "fast locals". (gh-26587)
Currently, if an arg value escapes (into the closure for an inner function) we end up allocating two indices in the fast locals even though only one gets used. Additionally, using the lower index would be better in some cases, such as with no-arg `super()`. To address this, we update the compiler to fix the offsets so each variable only gets one "fast local". As a consequence, now some cell offsets are interspersed with the locals (only when an arg escapes to an inner function). https://bugs.python.org/issue43693
Diffstat (limited to 'Include/internal')
-rw-r--r--Include/internal/pycore_frame.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/internal/pycore_frame.h b/Include/internal/pycore_frame.h
index 11c3a2c..44f58fb 100644
--- a/Include/internal/pycore_frame.h
+++ b/Include/internal/pycore_frame.h
@@ -32,8 +32,6 @@ _PyFrame_GetBuiltins(PyFrameObject *f)
int _PyFrame_TakeLocals(PyFrameObject *f);
-PyAPI_FUNC(int) _PyFrame_OpAlreadyRan(PyFrameObject *f, int opcode, int oparg);
-
#ifdef __cplusplus
}
#endif