(&self)
| 1130 | |
| 1131 | #[pygetset] |
| 1132 | fn options(&self) -> libc::c_ulong { |
| 1133 | self.ctx.read().options().bits() as _ |
| 1134 | } |
| 1135 | #[pygetset(setter)] |
| 1136 | fn set_options(&self, new_opts: i64, vm: &VirtualMachine) -> PyResult<()> { |
| 1137 | if new_opts < 0 { |