2021-10-02 18:44:32 +00:00
|
|
|
mod hygiene {
|
|
|
|
mod misc;
|
|
|
|
mod pyclass;
|
|
|
|
mod pyfunction;
|
2021-10-02 23:41:22 +00:00
|
|
|
// cannot implement protos in #[pymethods] using `multiple-pymethods` feature
|
|
|
|
#[cfg(not(feature = "multiple-pymethods"))]
|
2021-10-02 18:44:32 +00:00
|
|
|
mod pymethods;
|
|
|
|
mod pymodule;
|
|
|
|
mod pyproto;
|
|
|
|
}
|