42 #include "pybind11/embed.h"
52 namespace py = pybind11;
58 const unsigned char *code,
int zlen,
int len)
59 : abspath(abspath), modpath(modpath), code(code), zlen(zlen),
len(
len)
78 Bytef marshalled[
len];
80 int ret = uncompress(marshalled, &unzlen, (
const Bytef *)
code,
zlen);
82 std::cerr <<
"Could not uncompress code: " << zError(ret) << std::endl;
85 assert(unzlen == (uLongf)
len);
87 auto marshal = py::module_::import(
"marshal");
88 return marshal.attr(
"loads")(py::bytes((
char *)marshalled,
len));
94 auto importer = py::module_::import(
"importer");
106 for (
auto *embedded:
getList()) {
107 if (!embedded->addModule())