STINNER Victor <vstin...@redhat.com> added the comment:
> I think the basic implementation problem is that by the time you get to > get_hash_info() in sysmodule.c, you no longer have access to the > _PyCoreConfig object, nor the _PyMain object that it's generally attached to. An interpreter now keeps a copy of _PyCoreConfig and _PyMainInterpreterConfig. See for example make_flags() in sysmodule.c: _PyCoreConfig *core_config = &_PyGILState_GetInterpreterStateUnsafe()->core_config; ... PyStructSequence_SET_ITEM(seq, pos++, PyBool_FromLong(core_config->dev_mode)); The interpreter really owns the copy of these configs and they are kept until the interpreter object is destroyed. Another example: static PyObject * import_find_and_load(PyObject *abs_name) { ... int import_time = interp->core_config.import_time; ... } ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue33919> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com