➜

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.

作者 vstinner
收信人 miss-islington, vstinner
日期 2019-06-13.16:24:37
SpamBayes Score -1.0
Marked as misclassified 是
Message-id <1560443077.18.0.449632192713.issue36763@roundup.psfhosted.org>
In-reply-to
内容
Two interesting TODO.

sysmodule.c: get_xoptions()

        /* PEP432 TODO: we can reach this if xoptions is NULL in the main
        *  interpreter config. When that happens, we need to properly set
         * the `xoptions` reference in the main interpreter config as well.
         *
         * For Python 3.7, we shouldn't be able to get here due to the
         * combination of how _PyMainInterpreter_ReadConfig and _PySys_EndInit
         * work, but we expect 3.8+ to make the _PyMainInterpreter_ReadConfig
         * call optional for embedding applications, thus making this
         * reachable again.
         */

sysmodule.c: get_warnoptions()

        /* PEP432 TODO: we can reach this if warnoptions is NULL in the main
        *  interpreter config. When that happens, we need to properly set
         * the `warnoptions` reference in the main interpreter config as well.
         *
         * For Python 3.7, we shouldn't be able to get here due to the
         * combination of how _PyMainInterpreter_ReadConfig and _PySys_EndInit
         * work, but we expect 3.8+ to make the _PyMainInterpreter_ReadConfig
         * call optional for embedding applications, thus making this
         * reachable again.
         */
历史
日期 用户 动作 参数
2019-06-13 16:24:37vstinner修改recipients: + vstinner, miss-islington
2019-06-13 16:24:37vstinner修改messageid: <1560443077.18.0.449632192713.issue36763@roundup.psfhosted.org>
2019-06-13 16:24:37vstinner链接issue36763 messages
2019-06-13 16:24:37vstinner创建