(cls: PyTypeRef, args: FuncArgs, vm: &VirtualMachine)
| 951 | impl PyStructTime { |
| 952 | #[pyslot] |
| 953 | fn slot_new(cls: PyTypeRef, args: FuncArgs, vm: &VirtualMachine) -> PyResult { |
| 954 | let (seq, _dict): (PyObjectRef, OptionalArg<PyObjectRef>) = args.bind(vm)?; |
| 955 | struct_sequence_new(cls, seq, vm) |
| 956 | } |
| 957 | } |
| 958 | |
| 959 | /// Extract fields from StructTimeData into a libc::tm for mktime. |
nothing calls this directly
no test coverage detected