We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8965de5 commit 9bc0415Copy full SHA for 9bc0415
1 file changed
pyo3-ffi/src/structmember.rs
@@ -2,6 +2,8 @@ use core::ffi::c_int;
2
3
pub use crate::PyMemberDef;
4
5
+#[allow(deprecated)]
6
+pub use crate::_Py_T_OBJECT as T_OBJECT;
7
pub use crate::Py_T_BOOL as T_BOOL;
8
pub use crate::Py_T_BYTE as T_BYTE;
9
pub use crate::Py_T_CHAR as T_CHAR;
@@ -19,12 +21,10 @@ pub use crate::Py_T_UINT as T_UINT;
19
21
pub use crate::Py_T_ULONG as T_ULONG;
20
22
pub use crate::Py_T_ULONGLONG as T_ULONGLONG;
23
pub use crate::Py_T_USHORT as T_USHORT;
-#[allow(deprecated)]
-pub use crate::_Py_T_OBJECT as T_OBJECT;
24
25
-pub use crate::Py_T_PYSSIZET as T_PYSSIZET;
26
#[allow(deprecated)]
27
pub use crate::_Py_T_NONE as T_NONE;
+pub use crate::Py_T_PYSSIZET as T_PYSSIZET;
28
29
/* Flags */
30
pub use crate::Py_READONLY as READONLY;
0 commit comments