[issue36444] Python initialization: remove _PyMainInterpreterConfig

2019-03-27 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue36444] Python initialization: remove _PyMainInterpreterConfig

2019-03-27 Thread STINNER Victor
STINNER Victor added the comment: New changeset 5ac27a50ff2b42216746fedc0522a92c53089bb3 by Victor Stinner in branch 'master': bpo-36444: Rework _Py_InitializeFromConfig() API (GH-12576) https://github.com/python/cpython/commit/5ac27a50ff2b42216746fedc0522a92c53089bb3 -- __

[issue36444] Python initialization: remove _PyMainInterpreterConfig

2019-03-26 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +12520 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36444] Python initialization: remove _PyMainInterpreterConfig

2019-03-26 Thread STINNER Victor
STINNER Victor added the comment: New changeset 484f20d2ff95cc2e1bea759852da307bc1d1d944 by Victor Stinner in branch 'master': bpo-36444: Add _PyCoreConfig._init_main (GH-12572) https://github.com/python/cpython/commit/484f20d2ff95cc2e1bea759852da307bc1d1d944 -- ___

[issue36444] Python initialization: remove _PyMainInterpreterConfig

2019-03-26 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +12517 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36444] Python initialization: remove _PyMainInterpreterConfig

2019-03-26 Thread STINNER Victor
STINNER Victor added the comment: New changeset 8b9dbc017a190d13f717e714630d620adb7c7ac2 by Victor Stinner in branch 'master': bpo-36444: Remove _PyMainInterpreterConfig (GH-12571) https://github.com/python/cpython/commit/8b9dbc017a190d13f717e714630d620adb7c7ac2 --

[issue36444] Python initialization: remove _PyMainInterpreterConfig

2019-03-26 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +12516 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue36444] Python initialization: remove _PyMainInterpreterConfig

2019-03-26 Thread STINNER Victor
New submission from STINNER Victor : The _PyMainInterpreterConfig structure is redundant with _PyCoreConfig: it is a subset but using PyObject*. PyInterpreterState has 2 fields: _PyCoreConfig core_config; _PyMainInterpreterConfig config; config parameters can be found in core_config,