From 9425e70a862c946e03ea86689797d4dc26f8efe1 Mon Sep 17 00:00:00 2001 From: jrudolph Date: Sat, 13 Jul 2024 22:56:52 -0500 Subject: [PATCH] Added `PyClone` to the crate's root namespace. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 7b7a580b7..3830be324 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -111,7 +111,7 @@ pub use crate::convert::{IntoPyArray, NpyIndex, ToNpyDims, ToPyArray}; #[cfg(feature = "gil-refs")] pub use crate::dtype::dtype; pub use crate::dtype::{ - dtype_bound, Complex32, Complex64, Element, PyArrayDescr, PyArrayDescrMethods, + dtype_bound, Complex32, Complex64, Element, PyArrayDescr, PyArrayDescrMethods, PyClone, }; pub use crate::error::{BorrowError, FromVecError, NotContiguousError}; pub use crate::npyffi::{PY_ARRAY_API, PY_UFUNC_API};