Skip to content

Commit 9bc0415

Browse files
committed
update rustfmt
1 parent 8965de5 commit 9bc0415

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pyo3-ffi/src/structmember.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ use core::ffi::c_int;
22

33
pub use crate::PyMemberDef;
44

5+
#[allow(deprecated)]
6+
pub use crate::_Py_T_OBJECT as T_OBJECT;
57
pub use crate::Py_T_BOOL as T_BOOL;
68
pub use crate::Py_T_BYTE as T_BYTE;
79
pub use crate::Py_T_CHAR as T_CHAR;
@@ -19,12 +21,10 @@ pub use crate::Py_T_UINT as T_UINT;
1921
pub use crate::Py_T_ULONG as T_ULONG;
2022
pub use crate::Py_T_ULONGLONG as T_ULONGLONG;
2123
pub use crate::Py_T_USHORT as T_USHORT;
22-
#[allow(deprecated)]
23-
pub use crate::_Py_T_OBJECT as T_OBJECT;
2424

25-
pub use crate::Py_T_PYSSIZET as T_PYSSIZET;
2625
#[allow(deprecated)]
2726
pub use crate::_Py_T_NONE as T_NONE;
27+
pub use crate::Py_T_PYSSIZET as T_PYSSIZET;
2828

2929
/* Flags */
3030
pub use crate::Py_READONLY as READONLY;

0 commit comments

Comments
 (0)