(zelf: PyRef<Self>, args: Self::Args, vm: &VirtualMachine)
| 755 | type Args = FuncArgs; |
| 756 | |
| 757 | fn init(zelf: PyRef<Self>, args: Self::Args, vm: &VirtualMachine) -> PyResult<()> { |
| 758 | *zelf.args.write() = PyTuple::new_ref(args.args, &vm.ctx); |
| 759 | Ok(()) |
| 760 | } |
| 761 | } |
| 762 | |
| 763 | impl Representable for PyBaseException { |