diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2024-07-10 22:48:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-10 22:48:37 (GMT) |
commit | 6557af669899f18f8d123f8e1b6c3380d502c519 (patch) | |
tree | 69054c6acced74cae1cad6739ae110131c5c4cf1 /Include | |
parent | ef10110cd781afe8ddd3e65a54dc2b5ed2cb3187 (diff) | |
download | cpython-6557af669899f18f8d123f8e1b6c3380d502c519.zip cpython-6557af669899f18f8d123f8e1b6c3380d502c519.tar.gz cpython-6557af669899f18f8d123f8e1b6c3380d502c519.tar.bz2 |
gh-121554: remove unnecessary internal functions in compile.c (#121555)
Co-authored-by: Erlend E. Aasland <erlend@python.org>
Diffstat (limited to 'Include')
-rw-r--r-- | Include/internal/pycore_compile.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Include/internal/pycore_compile.h b/Include/internal/pycore_compile.h index a1ac034..325243e 100644 --- a/Include/internal/pycore_compile.h +++ b/Include/internal/pycore_compile.h @@ -76,15 +76,6 @@ int _PyCompile_ConstCacheMergeOne(PyObject *const_cache, PyObject **obj); // Export for '_opcode' extension module -PyAPI_FUNC(int) _PyCompile_OpcodeIsValid(int opcode); -PyAPI_FUNC(int) _PyCompile_OpcodeHasArg(int opcode); -PyAPI_FUNC(int) _PyCompile_OpcodeHasConst(int opcode); -PyAPI_FUNC(int) _PyCompile_OpcodeHasName(int opcode); -PyAPI_FUNC(int) _PyCompile_OpcodeHasJump(int opcode); -PyAPI_FUNC(int) _PyCompile_OpcodeHasFree(int opcode); -PyAPI_FUNC(int) _PyCompile_OpcodeHasLocal(int opcode); -PyAPI_FUNC(int) _PyCompile_OpcodeHasExc(int opcode); - PyAPI_FUNC(PyObject*) _PyCompile_GetUnaryIntrinsicName(int index); PyAPI_FUNC(PyObject*) _PyCompile_GetBinaryIntrinsicName(int index); |