(s: *const core::ffi::c_char)
| 285 | use crate::builtins::tuple::IntoPyTuple; |
| 286 | |
| 287 | unsafe fn to_str(s: *const core::ffi::c_char) -> String { |
| 288 | unsafe { core::ffi::CStr::from_ptr(s) } |
| 289 | .to_string_lossy() |
| 290 | .into_owned() |
| 291 | } |
| 292 | unsafe { (to_str(super::c_tzname[0]), to_str(super::c_tzname[1])) }.into_pytuple(vm) |
| 293 | } |
| 294 |
no test coverage detected