]> granicus.if.org Git - python/commit
bpo-28411: Isolate PyInterpreterState.modules (#3575)
authorEric Snow <ericsnowcurrently@gmail.com>
Thu, 14 Sep 2017 18:18:12 +0000 (12:18 -0600)
committerGitHub <noreply@github.com>
Thu, 14 Sep 2017 18:18:12 +0000 (12:18 -0600)
commitd393c1b227f22fb9af66040b2b367c99a4d1fa9a
tree2bb1bb4f8b59d3c6ffa8dabbc43dc30357e2b25f
parent8dcf22f442320e4c1a5408e67b4c9002ad105f17
bpo-28411: Isolate PyInterpreterState.modules (#3575)

A bunch of code currently uses PyInterpreterState.modules directly instead of PyImport_GetModuleDict(). This complicates efforts to make changes relative to sys.modules. This patch switches to using PyImport_GetModuleDict() uniformly. Also, a number of related uses of sys.modules are updated for uniformity for the same reason.

Note that this code was already reviewed and merged as part of #1638. I reverted that and am now splitting it up into more focused parts.
Include/import.h
Include/modsupport.h
Misc/NEWS.d/next/Core and Builtins/2017-09-11-09-24-21.bpo-28411.12SpAm.rst [new file with mode: 0644]
Objects/moduleobject.c
Objects/typeobject.c
Python/bltinmodule.c
Python/import.c
Python/importdl.c
Python/pylifecycle.c
Python/sysmodule.c