]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-43693: Add _PyCode_New(). (gh-26375)
authorEric Snow <ericsnowcurrently@gmail.com>
Thu, 27 May 2021 15:54:34 +0000 (09:54 -0600)
committerGitHub <noreply@github.com>
Thu, 27 May 2021 15:54:34 +0000 (09:54 -0600)
commit9f494d492944c3a6a7a7471b4ad3a025dc7de289
tree8cca83ea93a0bf38de318278a73155dfe4cbf4f7
parent318adeba780851c416505e48a3454cacca831419
bpo-43693: Add _PyCode_New(). (gh-26375)

This is an internal-only API that helps us manage the many values used to create a code object.

https://bugs.python.org/issue43693
12 files changed:
Include/cpython/code.h
Include/internal/pycore_code.h
Lib/ctypes/test/test_values.py
Lib/importlib/_bootstrap_external.py
Objects/codeobject.c
Programs/test_frozenmain.h
Python/compile.c
Python/frozen_hello.h
Python/importlib.h
Python/importlib_external.h
Python/importlib_zipimport.h
Python/marshal.c