Buckets:
| /* Py_FrozenMain is kept out of the Limited API until documented and present | |
| in all builds of Python */ | |
| PyAPI_FUNC(int) Py_FrozenMain(int argc, char **argv); | |
| /* PEP 432 Multi-phase initialization API (Private while provisional!) */ | |
| PyAPI_FUNC(PyStatus) Py_PreInitialize( | |
| const PyPreConfig *src_config); | |
| PyAPI_FUNC(PyStatus) Py_PreInitializeFromBytesArgs( | |
| const PyPreConfig *src_config, | |
| Py_ssize_t argc, | |
| char **argv); | |
| PyAPI_FUNC(PyStatus) Py_PreInitializeFromArgs( | |
| const PyPreConfig *src_config, | |
| Py_ssize_t argc, | |
| wchar_t **argv); | |
| /* Initialization and finalization */ | |
| PyAPI_FUNC(PyStatus) Py_InitializeFromConfig( | |
| const PyConfig *config); | |
| // Python 3.8 provisional API (PEP 587) | |
| PyAPI_FUNC(PyStatus) _Py_InitializeMain(void); | |
| PyAPI_FUNC(int) Py_RunMain(void); | |
| PyAPI_FUNC(void) _Py_NO_RETURN Py_ExitStatusException(PyStatus err); | |
| PyAPI_FUNC(int) Py_FdIsInteractive(FILE *, const char *); | |
| /* --- PyInterpreterConfig ------------------------------------ */ | |
| typedef struct { | |
| // XXX "allow_object_sharing"? "own_objects"? | |
| int use_main_obmalloc; | |
| int allow_fork; | |
| int allow_exec; | |
| int allow_threads; | |
| int allow_daemon_threads; | |
| int check_multi_interp_extensions; | |
| int gil; | |
| } PyInterpreterConfig; | |
| // gh-117649: The free-threaded build does not currently support single-phase | |
| // init extensions in subinterpreters. For now, we ensure that | |
| // `check_multi_interp_extensions` is always `1`, even in the legacy config. | |
| PyAPI_FUNC(PyStatus) Py_NewInterpreterFromConfig( | |
| PyThreadState **tstate_p, | |
| const PyInterpreterConfig *config); | |
| typedef void (*atexit_datacallbackfunc)(void *); | |
| PyAPI_FUNC(int) PyUnstable_AtExit( | |
| PyInterpreterState *, atexit_datacallbackfunc, void *); | |
Xet Storage Details
- Size:
- 2.82 kB
- Xet hash:
- 36b4fc8ae1828f02ac96538b2c9ce69cd8e2a82a29c16cad8e9d4be4ac966482
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.