# HG changeset patch # User Tuomo Valkonen # Date 1757097053 18000 # Node ID 71fa6d3df947ddd848dbe54245548e442f41ffa7 # Parent f159287bc191c0d363bb7019e95b738a08079b6f Disable Pair reference pyo3 conversions to avoid compiler bugs diff -r f159287bc191 -r 71fa6d3df947 src/direct_product.rs --- a/src/direct_product.rs Fri Sep 05 01:09:21 2025 -0500 +++ b/src/direct_product.rs Fri Sep 05 13:30:53 2025 -0500 @@ -619,6 +619,7 @@ } } + /* impl<'a, 'py, A, B> IntoPyObject<'py> for &'a mut Pair where &'a mut A: IntoPyObject<'py>, @@ -646,6 +647,7 @@ (&self.0, &self.1).into_pyobject(py) } } + */ impl<'py, A, B> FromPyObject<'py> for Pair where