We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 50770f5 + 82a596b commit 5f5478dCopy full SHA for 5f5478d
vm/src/function.rs
@@ -563,11 +563,11 @@ macro_rules! into_py_native_func_tuple {
563
}
564
565
into_py_native_func_tuple!();
566
-into_py_native_func_tuple!((a, A));
567
-into_py_native_func_tuple!((a, A), (b, B));
568
-into_py_native_func_tuple!((a, A), (b, B), (c, C));
569
-into_py_native_func_tuple!((a, A), (b, B), (c, C), (d, D));
570
-into_py_native_func_tuple!((a, A), (b, B), (c, C), (d, D), (e, E));
+into_py_native_func_tuple!((v1, T1));
+into_py_native_func_tuple!((v1, T1), (v2, T2));
+into_py_native_func_tuple!((v1, T1), (v2, T2), (v3, T3));
+into_py_native_func_tuple!((v1, T1), (v2, T2), (v3, T3), (v4, T4));
+into_py_native_func_tuple!((v1, T1), (v2, T2), (v3, T3), (v4, T4), (v5, T5));
571
572
/// Tests that the predicate is True on a single value, or if the value is a tuple a tuple, then
573
/// test that any of the values contained within the tuples satisfies the predicate. Type parameter
0 commit comments