(frame: &Py<Frame>, vm: &VirtualMachine)
| 1143 | } |
| 1144 | |
| 1145 | fn release_datastack_frame(frame: &Py<Frame>, vm: &VirtualMachine) { |
| 1146 | unsafe { |
| 1147 | if let Some(base) = frame.materialize_localsplus() { |
| 1148 | vm.datastack_pop(base); |
| 1149 | } |
| 1150 | } |
| 1151 | } |
| 1152 | |
| 1153 | type BinaryOpExtendGuard = fn(&PyObject, &PyObject, &VirtualMachine) -> bool; |
| 1154 | type BinaryOpExtendAction = fn(&PyObject, &PyObject, &VirtualMachine) -> Option<PyObjectRef>; |
no test coverage detected