diff options
author | Victor Stinner <vstinner@python.org> | 2019-11-22 18:24:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-22 18:24:49 (GMT) |
commit | 2582d46fbcf7bdf86b9cf4016850b8d155267ac6 (patch) | |
tree | 7ac19636e1def16e85485e159ec98a127abb12e2 /Doc/data | |
parent | 82c83bd907409c287a5bd0d0f4598f2c0538f34d (diff) | |
download | cpython-2582d46fbcf7bdf86b9cf4016850b8d155267ac6.zip cpython-2582d46fbcf7bdf86b9cf4016850b8d155267ac6.tar.gz cpython-2582d46fbcf7bdf86b9cf4016850b8d155267ac6.tar.bz2 |
bpo-38858: new_interpreter() reuses pycore_init_builtins() (GH-17351)
new_interpreter() now calls _PyBuiltin_Init() to create the builtins
module and calls _PyImport_FixupBuiltin(), rather than using
_PyImport_FindBuiltin(tstate, "builtins").
pycore_init_builtins() is now responsible to initialize
intepr->builtins_copy: inline _PyImport_Init() and remove this
function.
Diffstat (limited to 'Doc/data')
-rw-r--r-- | Doc/data/refcounts.dat | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Doc/data/refcounts.dat b/Doc/data/refcounts.dat index cfed1bd..b55e972 100644 --- a/Doc/data/refcounts.dat +++ b/Doc/data/refcounts.dat @@ -3045,8 +3045,6 @@ Py_XINCREF:PyObject*:o:+1:if o is not NULL _PyImport_Fini:void::: -_PyImport_Init:void::: - _PyObject_New:PyObject*::+1: _PyObject_New:PyTypeObject*:type:0: |