(name: PyUtf8StrRef, vm: &VirtualMachine)
| 272 | |
| 273 | #[pyfunction] |
| 274 | fn init_frozen(name: PyUtf8StrRef, vm: &VirtualMachine) -> PyResult { |
| 275 | import::import_frozen(vm, name.as_str()) |
| 276 | } |
| 277 | |
| 278 | #[pyfunction] |
| 279 | fn is_frozen_package(name: PyUtf8StrRef, vm: &VirtualMachine) -> PyResult<bool> { |
nothing calls this directly
no test coverage detected