Macro pytuple

Source
macro_rules! pytuple {
    ( $( $elem:ident ),+ ) => { ... };
    ( $( $elem:expr ),+ ) => { ... };
}
Expand description

This macro allows the construction of PyTuple types.

ยงExamples

pytuple!(PyArg::I64(10), PyArg::F32(10.5));