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 1b886c4 commit 06262e8Copy full SHA for 06262e8
src/validators/literal.rs
@@ -36,7 +36,8 @@ pub struct LiteralLookup<T: Debug> {
36
// Catch all for unhashable types like list
37
expected_py_values: Option<Vec<(Py<PyAny>, usize)>>,
38
// Fallback for ints, bools, and strings to use Python hash and equality checks
39
- // which we can't mix with `expected_py_dict`, see tests/test_validators/test_literal.py::test_mix_int_enum_with_int
+ // which we can't mix with `expected_py_dict`, as there may be conflicts
40
+ // for an example, see tests/test_validators/test_literal.py::test_mix_int_enum_with_int
41
expected_py_primitives: Option<Py<PyDict>>,
42
43
pub values: Vec<T>,
0 commit comments