forked from Rust-related/RustPython
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 ```