1 | use crate::object::PyTypeObject; |
---|---|
2 | |
3 | #[cfg_attr(windows, link(name = "pythonXY"))] |
4 | extern "C"{ |
5 | pub static mut PyEnum_Type: PyTypeObject; |
6 | pub static mut PyReversed_Type: PyTypeObject; |
7 | } |
8 |
1 | use crate::object::PyTypeObject; |
---|---|
2 | |
3 | #[cfg_attr(windows, link(name = "pythonXY"))] |
4 | extern "C"{ |
5 | pub static mut PyEnum_Type: PyTypeObject; |
6 | pub static mut PyReversed_Type: PyTypeObject; |
7 | } |
8 |