Import the Python module with the specified name.
(self, name: &str)
| 353 | |
| 354 | /// Import the Python module with the specified name. |
| 355 | pub fn import(self, name: &str) -> PyResult<PyModule> { |
| 356 | PyModule::import(self, name) |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | impl<'p> std::fmt::Debug for PythonObjectDowncastError<'p> { |
no outgoing calls