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 <1569337465.5.0.968130247025.issue35886@roundup.psfhosted.org>
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: <1569337465.5.0.968130247025.issue35886@roundup.psfhosted.org>
2019-09-24 15:04:25vstinnerlinkissue35886 messages
2019-09-24 15:04:25vstinnercreate