pyo3_ffi/
pylifecycle.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
use crate::pystate::PyThreadState;

use libc::wchar_t;
use std::os::raw::{c_char, c_int};

extern "C" {
    pub fn Py_Initialize();
    pub fn Py_InitializeEx(arg1: c_int);
    pub fn Py_Finalize();
    pub fn Py_FinalizeEx() -> c_int;

    #[cfg_attr(PyPy, link_name = "PyPy_IsInitialized")]
    pub fn Py_IsInitialized() -> c_int;

    pub fn Py_NewInterpreter() -> *mut PyThreadState;
    pub fn Py_EndInterpreter(arg1: *mut PyThreadState);

    #[cfg_attr(PyPy, link_name = "PyPy_AtExit")]
    pub fn Py_AtExit(func: Option<extern "C" fn()>) -> c_int;

    pub fn Py_Exit(arg1: c_int);

    pub fn Py_Main(argc: c_int, argv: *mut *mut wchar_t) -> c_int;
    pub fn Py_BytesMain(argc: c_int, argv: *mut *mut c_char) -> c_int;

    #[cfg_attr(
        Py_3_11,
        deprecated(note = "Deprecated since Python 3.11. Use `PyConfig.program_name` instead.")
    )]
    pub fn Py_SetProgramName(arg1: *const wchar_t);
    #[cfg_attr(PyPy, link_name = "PyPy_GetProgramName")]
    #[cfg_attr(
        Py_3_13,
        deprecated(note = "Deprecated since Python 3.13. Use `sys.executable` instead.")
    )]
    pub fn Py_GetProgramName() -> *mut wchar_t;

    #[cfg_attr(
        Py_3_11,
        deprecated(note = "Deprecated since Python 3.11. Use `PyConfig.home` instead.")
    )]
    pub fn Py_SetPythonHome(arg1: *const wchar_t);
    #[cfg_attr(
        Py_3_13,
        deprecated(
            note = "Deprecated since Python 3.13. Use `PyConfig.home` or the value of the `PYTHONHOME` environment variable instead."
        )
    )]
    pub fn Py_GetPythonHome() -> *mut wchar_t;
    #[cfg_attr(
        Py_3_13,
        deprecated(note = "Deprecated since Python 3.13. Use `sys.executable` instead.")
    )]
    pub fn Py_GetProgramFullPath() -> *mut wchar_t;
    #[cfg_attr(
        Py_3_13,
        deprecated(note = "Deprecated since Python 3.13. Use `sys.prefix` instead.")
    )]
    pub fn Py_GetPrefix() -> *mut wchar_t;
    #[cfg_attr(
        Py_3_13,
        deprecated(note = "Deprecated since Python 3.13. Use `sys.exec_prefix` instead.")
    )]
    pub fn Py_GetExecPrefix() -> *mut wchar_t;
    #[cfg_attr(
        Py_3_13,
        deprecated(note = "Deprecated since Python 3.13. Use `sys.path` instead.")
    )]
    pub fn Py_GetPath() -> *mut wchar_t;
    #[cfg(not(Py_3_13))]
    #[cfg_attr(
        Py_3_11,
        deprecated(note = "Deprecated since Python 3.11. Use `sys.path` instead.")
    )]
    pub fn Py_SetPath(arg1: *const wchar_t);

    // skipped _Py_CheckPython3

    #[cfg_attr(PyPy, link_name = "PyPy_GetVersion")]
    pub fn Py_GetVersion() -> *const c_char;
    pub fn Py_GetPlatform() -> *const c_char;
    pub fn Py_GetCopyright() -> *const c_char;
    pub fn Py_GetCompiler() -> *const c_char;
    pub fn Py_GetBuildInfo() -> *const c_char;
}

type PyOS_sighandler_t = unsafe extern "C" fn(arg1: c_int);

extern "C" {
    pub fn PyOS_getsig(arg1: c_int) -> PyOS_sighandler_t;
    pub fn PyOS_setsig(arg1: c_int, arg2: PyOS_sighandler_t) -> PyOS_sighandler_t;
}