(
&self,
needle: Either<PyBytesInner, PyIntRef>,
vm: &VirtualMachine,
)
| 229 | } |
| 230 | |
| 231 | fn __contains__( |
| 232 | &self, |
| 233 | needle: Either<PyBytesInner, PyIntRef>, |
| 234 | vm: &VirtualMachine, |
| 235 | ) -> PyResult<bool> { |
| 236 | self.inner().contains(needle, vm) |
| 237 | } |
| 238 | |
| 239 | fn __iadd__( |
| 240 | zelf: PyRef<Self>, |