1 | use std::os::raw::c_int; |
---|---|
2 | |
3 | pub const Py_single_input: c_int = 256; |
4 | pub const Py_file_input: c_int = 257; |
5 | pub const Py_eval_input: c_int = 258; |
6 | #[cfg(Py_3_8)] |
7 | pub const Py_func_type_input: c_int = 345; |
8 | |
9 | #[cfg(Py_3_9)] |
10 | pub const Py_fstring_input: c_int = 800; |
11 |