(&self, jen: &PyObject, id: usize, vm: &VirtualMachine)
| 272 | } |
| 273 | |
| 274 | pub fn repr(&self, jen: &PyObject, id: usize, vm: &VirtualMachine) -> String { |
| 275 | let qualname = self.qualname(); |
| 276 | format!( |
| 277 | "<{} object {} at {:#x}>", |
| 278 | gen_name(jen, vm), |
| 279 | qualname.as_wtf8(), |
| 280 | id |
| 281 | ) |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | pub fn is_gen_exit(exc: &Py<PyBaseException>, vm: &VirtualMachine) -> bool { |
no test coverage detected