(name: PyUtf8StrRef, vm: &VirtualMachine)
| 188 | |
| 189 | #[pyfunction] |
| 190 | fn is_builtin(name: PyUtf8StrRef, vm: &VirtualMachine) -> bool { |
| 191 | vm.state.module_defs.contains_key(name.as_str()) |
| 192 | } |
| 193 | |
| 194 | #[pyfunction] |
| 195 | fn is_frozen(name: PyUtf8StrRef, vm: &VirtualMachine) -> bool { |
nothing calls this directly
no test coverage detected