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 serhiy.storchaka, vstinner
Date 2020-01-23.02:11:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1579745485.24.0.633084843798.issue39395@roundup.psfhosted.org>
In-reply-to
Content
Clearing environment variables at exit has a drawback: it changes the behavior in code executed after Python finalization (Py_FinalizeEx() call). It may cause regression.

So I proposed PR 18135 to fix this issue differently: on non-Windows platforms, Python now requires setenv() to build. This PR has no backward compatibility issue: it doesn't unset environment variables at exit.
History
Date User Action Args
2020-01-23 02:11:25vstinnersetrecipients: + vstinner, serhiy.storchaka
2020-01-23 02:11:25vstinnersetmessageid: <1579745485.24.0.633084843798.issue39395@roundup.psfhosted.org>
2020-01-23 02:11:25vstinnerlinkissue39395 messages
2020-01-23 02:11:24vstinnercreate