(name: &'static PyStrInterned, vm: &VirtualMachine)
| 2033 | |
| 2034 | #[cold] |
| 2035 | fn name_error(name: &'static PyStrInterned, vm: &VirtualMachine) -> PyBaseExceptionRef { |
| 2036 | vm.new_name_error(format!("name '{name}' is not defined"), name.to_owned()) |
| 2037 | } |
| 2038 | |
| 2039 | match instruction { |
| 2040 | Instruction::BinaryOp { op } => { |
nothing calls this directly
no test coverage detected