mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Implement tp_new for `stat_result` To unpack args, this PR implement a `flatten_args` closure to unpack args like ``` args = (1, 2, 3, 4, 5) args = ((1, 2, 3, 4, 5)) args = (((1, 2, 3, 4, 5))) # from pickle load ```