Message 403336 - Python tracker

Message403336

Author eric.snow
Recipients brett.cannon, eric.snow
Date 2021-10-06.20:22:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1633551734.9.0.785349509784.issue45396@roundup.psfhosted.org>
In-reply-to
Content
Recently we added the "-X frozen_modules" CLI option to control whether or not (non-essential) frozen modules get used.  Currently the default is "off", though the plan is to make the default "on".  Regardless, this is problematic for executables with custom frozen modules (where PyImport_FrozenModules is overridden).  If there are custom frozen modules then they should always be used.

Note that there are already other problems with custom frozen modules, to be addressed separately.  (See bpo-45395.)
History
Date User Action Args
2021-10-06 20:22:14eric.snowsetrecipients: + eric.snow, brett.cannon
2021-10-06 20:22:14eric.snowsetmessageid: <1633551734.9.0.785349509784.issue45396@roundup.psfhosted.org>
2021-10-06 20:22:14eric.snowlinkissue45396 messages
2021-10-06 20:22:14eric.snowcreate