[][src]Macro rustypy::pytuple

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

This macro allows the construction of PyTuple types.

Examples

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