diff options
author | Christian Heimes <christian@python.org> | 2022-01-27 19:32:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 19:32:12 (GMT) |
commit | 26b0482393a313e3bda364a35e7417e9db52c1c4 (patch) | |
tree | 6b82196461a27af8d54c68e1573f4c0788f8c38a /Include | |
parent | 247480a21cb165efdacc346a2d589dfc27e18283 (diff) | |
download | cpython-26b0482393a313e3bda364a35e7417e9db52c1c4.zip cpython-26b0482393a313e3bda364a35e7417e9db52c1c4.tar.gz cpython-26b0482393a313e3bda364a35e7417e9db52c1c4.tar.bz2 |
bpo-46476: Simplify and fix _PyStaticCode_Dealloc (GH-30965)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/internal/pycore_code.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_code.h b/Include/internal/pycore_code.h index 884a91f..bbf7a06 100644 --- a/Include/internal/pycore_code.h +++ b/Include/internal/pycore_code.h @@ -277,7 +277,7 @@ void _Py_Specialize_BinaryOp(PyObject *lhs, PyObject *rhs, _Py_CODEUNIT *instr, void _Py_Specialize_CompareOp(PyObject *lhs, PyObject *rhs, _Py_CODEUNIT *instr, SpecializedCacheEntry *cache); /* Deallocator function for static codeobjects used in deepfreeze.py */ -void _PyStaticCode_Dealloc(PyCodeObject *co, _Py_CODEUNIT *firstinstr); +void _PyStaticCode_Dealloc(PyCodeObject *co); #ifdef Py_STATS |