We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe03e81 commit f015e18Copy full SHA for f015e18
Python/frozen.c
@@ -47,7 +47,11 @@ static unsigned char M___hello__[] = {
47
};
48
49
static struct _frozen _PyImport_FrozenModules[] = {
50
+ /* Test module */
51
{"__hello__", M___hello__, 90},
52
+ /* Test package (negative size indicates package-ness) */
53
+ {"__phello__", M___hello__, -90},
54
+ {"__phello__.spam", M___hello__, 90},
55
{0, 0, 0} /* sentinel */
56
57
0 commit comments