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 miss-islington, vstinner
Date 2019-06-13.16:24:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1560443077.18.0.449632192713.issue36763@roundup.psfhosted.org>
In-reply-to
Content
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.
         */
History
Date User Action Args
2019-06-13 16:24:37vstinnersetrecipients: + vstinner, miss-islington
2019-06-13 16:24:37vstinnersetmessageid: <1560443077.18.0.449632192713.issue36763@roundup.psfhosted.org>
2019-06-13 16:24:37vstinnerlinkissue36763 messages
2019-06-13 16:24:37vstinnercreate