(pos: PyObjectRef, vm: &VirtualMachine)
| 92 | |
| 93 | #[pyfunction] |
| 94 | fn invert(pos: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 95 | vm._invert(&pos) |
| 96 | } |
| 97 | |
| 98 | #[pyfunction] |
| 99 | fn lshift(a: PyObjectRef, b: PyObjectRef, vm: &VirtualMachine) -> PyResult { |