(self, vm: &VirtualMachine)
| 590 | |
| 591 | impl ToPyResult for WideChar { |
| 592 | fn to_pyresult(self, vm: &VirtualMachine) -> PyResult { |
| 593 | Ok(CodePoint::try_from(self) |
| 594 | .map_err(|e| vm.new_unicode_encode_error(e))? |
| 595 | .to_pyobject(vm)) |
| 596 | } |
| 597 | } |
| 598 | |
| 599 | impl fmt::Display for WideChar { |