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 17c6104 commit e7a5fadCopy full SHA for e7a5fad
Python/import.c
@@ -1142,7 +1142,8 @@ typedef enum {
1142
FROZEN_BAD_NAME, // The given module name wasn't valid.
1143
FROZEN_NOT_FOUND, // It wasn't in PyImport_FrozenModules.
1144
FROZEN_DISABLED, // -X frozen_modules=off (and not essential)
1145
- FROZEN_EXCLUDED, // The PyImport_FrozenModules entry has NULL "code".
+ FROZEN_EXCLUDED, /* The PyImport_FrozenModules entry has NULL "code"
1146
+ (module is present but marked as unimportable, stops search). */
1147
FROZEN_INVALID, // The PyImport_FrozenModules entry is bogus.
1148
} frozen_status;
1149
0 commit comments