diff options
Diffstat (limited to 'Python/frozen.c')
-rw-r--r-- | Python/frozen.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Python/frozen.c b/Python/frozen.c index 2975b1f..eef0f45 100644 --- a/Python/frozen.c +++ b/Python/frozen.c @@ -41,6 +41,14 @@ #include "frozen_modules/importlib__bootstrap.h" #include "frozen_modules/importlib__bootstrap_external.h" #include "frozen_modules/zipimport.h" +#include "frozen_modules/abc.h" +#include "frozen_modules/io.h" +#include "frozen_modules/_collections_abc.h" +#include "frozen_modules/_sitebuiltins.h" +#include "frozen_modules/genericpath.h" +#include "frozen_modules/ntpath.h" +#include "frozen_modules/posixpath.h" +#include "frozen_modules/stat.h" #include "frozen_modules/hello.h" /* End includes */ @@ -54,6 +62,17 @@ static const struct _frozen _PyImport_FrozenModules[] = { (int)sizeof(_Py_M__importlib__bootstrap_external)}, {"zipimport", _Py_M__zipimport, (int)sizeof(_Py_M__zipimport)}, + /* stdlib */ + {"abc", _Py_M__abc, (int)sizeof(_Py_M__abc)}, + {"io", _Py_M__io, (int)sizeof(_Py_M__io)}, + {"_collections_abc", _Py_M___collections_abc, + (int)sizeof(_Py_M___collections_abc)}, + {"_sitebuiltins", _Py_M___sitebuiltins, (int)sizeof(_Py_M___sitebuiltins)}, + {"genericpath", _Py_M__genericpath, (int)sizeof(_Py_M__genericpath)}, + {"ntpath", _Py_M__ntpath, (int)sizeof(_Py_M__ntpath)}, + {"posixpath", _Py_M__posixpath, (int)sizeof(_Py_M__posixpath)}, + {"stat", _Py_M__stat, (int)sizeof(_Py_M__stat)}, + /* Test module */ {"__hello__", _Py_M__hello, (int)sizeof(_Py_M__hello)}, {"__phello__", _Py_M__hello, -(int)sizeof(_Py_M__hello)}, |