mirror of
https://github.com/python/cpython
synced 2024-11-02 11:04:01 +00:00
074fa57506
Currently custom modules (the array set on PyImport_FrozenModules) replace all the frozen stdlib modules. That can be problematic and is unlikely to be what the user wants. This change treats the custom frozen modules as additions instead. They take precedence over all other frozen modules except for those needed to bootstrap the import system. If the "code" field of an entry in the custom array is NULL then that frozen module is treated as disabled, which allows a custom entry to disable a frozen stdlib module. This change allows us to get rid of is_essential_frozen_module() and simplifies the logic for which frozen modules should be ignored. https://bugs.python.org/issue45395
27 lines
743 B
C
27 lines
743 B
C
#ifndef Py_LIMITED_API
|
|
#ifndef Py_INTERNAL_IMPORT_H
|
|
#define Py_INTERNAL_IMPORT_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef HAVE_FORK
|
|
extern PyStatus _PyImport_ReInitLock(void);
|
|
#endif
|
|
extern PyObject* _PyImport_BootstrapImp(PyThreadState *tstate);
|
|
|
|
struct _module_alias {
|
|
const char *name; /* ASCII encoded string */
|
|
const char *orig; /* ASCII encoded string */
|
|
};
|
|
|
|
PyAPI_DATA(const struct _frozen *) _PyImport_FrozenBootstrap;
|
|
PyAPI_DATA(const struct _frozen *) _PyImport_FrozenStdlib;
|
|
PyAPI_DATA(const struct _frozen *) _PyImport_FrozenTest;
|
|
extern const struct _module_alias * _PyImport_FrozenAliases;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* !Py_INTERNAL_IMPORT_H */
|
|
#endif /* !Py_LIMITED_API */
|