(ctx: &Context)
| 61 | |
| 62 | #[inline] |
| 63 | fn class(ctx: &Context) -> &'static Py<PyType> { |
| 64 | ctx.types.int_type |
| 65 | } |
| 66 | |
| 67 | fn into_pyobject(self, vm: &VirtualMachine) -> PyObjectRef { |
| 68 | vm.ctx.new_int(self.value).into() |
no outgoing calls
no test coverage detected