(ch: i32)
| 52 | |
| 53 | #[pyfunction] |
| 54 | fn unicode_tolower(ch: i32) -> i32 { |
| 55 | lower_unicode(ch as u32) as i32 |
| 56 | } |
| 57 | |
| 58 | trait SreStr: StrDrive { |
| 59 | fn slice(&self, start: usize, end: usize, vm: &VirtualMachine) -> PyObjectRef; |
nothing calls this directly
no test coverage detected