(
&self,
vm: &VirtualMachine,
exc_type: PyObjectRef,
exc_val: PyObjectRef,
exc_tb: PyObjectRef,
)
| 1034 | } |
| 1035 | |
| 1036 | pub(crate) fn gen_throw( |
| 1037 | &self, |
| 1038 | vm: &VirtualMachine, |
| 1039 | exc_type: PyObjectRef, |
| 1040 | exc_val: PyObjectRef, |
| 1041 | exc_tb: PyObjectRef, |
| 1042 | ) -> PyResult<ExecutionResult> { |
| 1043 | self.with_exec(vm, |mut exec| exec.gen_throw(vm, exc_type, exc_val, exc_tb)) |
| 1044 | } |
| 1045 | |
| 1046 | pub fn yield_from_target(&self) -> Option<PyObjectRef> { |
| 1047 | // If the frame is currently executing (owned by thread), it has no |
no test coverage detected