diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:01:04 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:01:04 +0000 |
commit | 6e1d0fd29a658fa402340dbc031e4fc7db202ee7 (patch) | |
tree | 43991206a47c92f8b2ac1d4a1a938f31e5294f08 /Python/frozen.c | |
parent | ffee692e0ddd36e128c7dc3632b1e795a9a8a289 (diff) | |
parent | 51dc66135fd222c634512dfacba7a799372d230f (diff) | |
download | cpython-6e1d0fd29a658fa402340dbc031e4fc7db202ee7.tar.gz |
Issue #25286: Merge dictionary view glossary from 3.4 into 3.5
Diffstat (limited to 'Python/frozen.c')
-rw-r--r-- | Python/frozen.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/frozen.c b/Python/frozen.c index 9bc662b994..676f395488 100644 --- a/Python/frozen.c +++ b/Python/frozen.c @@ -3,6 +3,7 @@ #include "Python.h" #include "importlib.h" +#include "importlib_external.h" /* In order to test the support for frozen modules, by default we define a single frozen module, __hello__. Loading it will print @@ -31,6 +32,8 @@ static unsigned char M___hello__[] = { static const struct _frozen _PyImport_FrozenModules[] = { /* importlib */ {"_frozen_importlib", _Py_M__importlib, (int)sizeof(_Py_M__importlib)}, + {"_frozen_importlib_external", _Py_M__importlib_external, + (int)sizeof(_Py_M__importlib_external)}, /* Test module */ {"__hello__", M___hello__, SIZE}, /* Test package (negative size indicates package-ness) */ |