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 arigo, eric.snow, matrixise, ncoghlan, njs, vstinner
Date 2019-09-24.15:04:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
This change broke at least two projects:

* Blender: access "interp->modules" but also "interp->builtins"
* FreeCAD: access "interp->modules"

It would be nice to document replacement solutions at:
https://docs.python.org/dev/whatsnew/3.8.html#porting-to-python-3-8

* Replace "interp->modules" with PyImport_GetModuleDict()
* Replace "interp->builtins" with PyEval_GetBuiltins()
History
Date User Action Args
2019-09-24 15:04:25vstinnersetrecipients: + vstinner, arigo, ncoghlan, njs, eric.snow, matrixise
2019-09-24 15:04:25vstinnersetmessageid: <[email protected]>
2019-09-24 15:04:25vstinnerlinkissue35886 messages
2019-09-24 15:04:25vstinnercreate