Skip to content

Commit f811ca2

Browse files
committed
implement PyModuleMethods
1 parent 0344921 commit f811ca2

File tree

3 files changed

+312
-55
lines changed

3 files changed

+312
-55
lines changed

src/prelude.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ pub use crate::types::float::PyFloatMethods;
3434
pub use crate::types::frozenset::PyFrozenSetMethods;
3535
pub use crate::types::list::PyListMethods;
3636
pub use crate::types::mapping::PyMappingMethods;
37+
pub use crate::types::module::PyModuleMethods;
3738
pub use crate::types::sequence::PySequenceMethods;
3839
pub use crate::types::set::PySetMethods;
3940
pub use crate::types::string::PyStringMethods;

src/types/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ mod iterator;
294294
pub(crate) mod list;
295295
pub(crate) mod mapping;
296296
mod memoryview;
297-
mod module;
297+
pub(crate) mod module;
298298
mod none;
299299
mod notimplemented;
300300
mod num;

0 commit comments

Comments
 (0)