(name: PyUtf8StrRef, vm: &VirtualMachine)
| 193 | |
| 194 | #[pyfunction] |
| 195 | fn is_frozen(name: PyUtf8StrRef, vm: &VirtualMachine) -> bool { |
| 196 | super::find_frozen(name.as_str(), vm).is_ok() |
| 197 | } |
| 198 | |
| 199 | #[pyfunction] |
| 200 | fn create_builtin(spec: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected