This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner
Date 2019-03-26.23:53:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1553644380.25.0.294234287845.issue36444@roundup.psfhosted.org>
In-reply-to
Content
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, but using a different type: it introduces redundancy and a risk of inconsitency (if one is modified, but not the other).

_PyMainInterpreterConfig doesn't provide any feature which is not accessible using _PyCoreConfig.
History
Date User Action Args
2019-03-26 23:53:00vstinnersetrecipients: + vstinner
2019-03-26 23:53:00vstinnersetmessageid: <1553644380.25.0.294234287845.issue36444@roundup.psfhosted.org>
2019-03-26 23:53:00vstinnerlinkissue36444 messages
2019-03-26 23:53:00vstinnercreate