(&self, options: anystr::SplitLinesArgs, vm: &VirtualMachine)
| 498 | |
| 499 | #[pymethod] |
| 500 | fn splitlines(&self, options: anystr::SplitLinesArgs, vm: &VirtualMachine) -> Vec<PyObjectRef> { |
| 501 | self.inner() |
| 502 | .splitlines(options, |x| vm.ctx.new_bytearray(x.to_vec()).into()) |
| 503 | } |
| 504 | |
| 505 | #[pymethod] |
| 506 | fn zfill(&self, width: isize) -> Self { |
nothing calls this directly
no test coverage detected