diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-12-06 16:25:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-06 16:25:50 (GMT) |
commit | 672b6baa71010f236ee8c8ce912e98cb542385c6 (patch) | |
tree | 542982cb63ada027c915497b3a703a6f46d0e5c4 /Python/pylifecycle.c | |
parent | a2a25eb03762680b98bb8cd090e43d0994a72c49 (diff) | |
download | cpython-672b6baa71010f236ee8c8ce912e98cb542385c6.zip cpython-672b6baa71010f236ee8c8ce912e98cb542385c6.tar.gz cpython-672b6baa71010f236ee8c8ce912e98cb542385c6.tar.bz2 |
bpo-32030: pass interp to _PyImport_Init() (#4736)
Remove also the initstr variable, unused since the commit
e69f0df45b709c25ac80617c41bbae16f56870fb pushed in 2012: "bpo-13959:
Re-implement imp.find_module() in Lib/imp.py"
Diffstat (limited to 'Python/pylifecycle.c')
-rw-r--r-- | Python/pylifecycle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index b615c79..504036c 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -751,7 +751,7 @@ _Py_InitializeCore(const _PyCoreConfig *config) PySys_SetObject("__stderr__", pstderr); Py_DECREF(pstderr); - err = _PyImport_Init(); + err = _PyImport_Init(interp); if (_Py_INIT_FAILED(err)) { return err; } |