We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c49947 commit 704ef0bCopy full SHA for 704ef0b
pytests/tests/test_othermod.py
@@ -3,7 +3,7 @@
3
4
from pyo3_pytests import othermod
5
6
-INTEGER32_ST = st.integers(min_value=(-(2**31)), max_value=(2**31 - 1))
+INTEGER32_ST = st.integers(min_value=(-(2**30)), max_value=(2**30 - 1))
7
USIZE_ST = st.integers(min_value=othermod.USIZE_MIN, max_value=othermod.USIZE_MAX)
8
9
src/lib.rs
@@ -1,4 +1,6 @@
1
#![warn(missing_docs)]
2
+#![allow(unknown_lints)]
+#![allow(clippy::literal_string_with_formatting_args)]
#![cfg_attr(
feature = "nightly",
feature(auto_traits, negative_impls, try_trait_v2)
0 commit comments