(&self, width: isize)
| 395 | } |
| 396 | |
| 397 | fn py_zfill(&self, width: isize) -> Vec<u8> { |
| 398 | let width = width.to_usize().unwrap_or(0); |
| 399 | rustpython_common::str::zfill(self.as_bytes(), width) |
| 400 | } |
| 401 | |
| 402 | // Unified form of CPython functions: |
| 403 | // _Py_bytes_islower |