We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
PyModuleMethods
1 parent 0344921 commit f811ca2Copy full SHA for f811ca2
src/prelude.rs
@@ -34,6 +34,7 @@ pub use crate::types::float::PyFloatMethods;
34
pub use crate::types::frozenset::PyFrozenSetMethods;
35
pub use crate::types::list::PyListMethods;
36
pub use crate::types::mapping::PyMappingMethods;
37
+pub use crate::types::module::PyModuleMethods;
38
pub use crate::types::sequence::PySequenceMethods;
39
pub use crate::types::set::PySetMethods;
40
pub use crate::types::string::PyStringMethods;
src/types/mod.rs
@@ -294,7 +294,7 @@ mod iterator;
294
pub(crate) mod list;
295
pub(crate) mod mapping;
296
mod memoryview;
297
-mod module;
+pub(crate) mod module;
298
mod none;
299
mod notimplemented;
300
mod num;
0 commit comments