mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
- PyRef<T> type for accepting references to payloads. - Args<T> type for consuming remaining positional args (mirrors python `*args`). - KwArgs<T> type for consuming remaining keyword args (mirrors python `*kwargs`). - OptArg<T> type for consuming remaining keyword args (no python code equivalent, only possible in native functions like in cpython). - PyIterable<T> for accepting an iterator over a sequence of Ts. - Arity checking (but TypeError messages need work)