Skip to content

Commit

Permalink
Make types in class::methods #[doc(hidden)]
Browse files Browse the repository at this point in the history
  • Loading branch information
kngwyu committed Oct 9, 2020
1 parent e7092fe commit 2684547
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/class/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ pub mod descr;
pub mod gc;
pub mod iter;
pub mod mapping;
#[doc(hidden)]
pub mod methods;
pub mod number;
pub mod proto_methods;
Expand All @@ -27,6 +28,7 @@ pub use self::descr::PyDescrProtocol;
pub use self::gc::{PyGCProtocol, PyTraverseError, PyVisit};
pub use self::iter::PyIterProtocol;
pub use self::mapping::PyMappingProtocol;
#[doc(hidden)]
pub use self::methods::{
PyClassAttributeDef, PyGetterDef, PyMethodDef, PyMethodDefType, PyMethodType, PySetterDef,
};
Expand Down

0 comments on commit 2684547

Please sign in to comment.