Details
-
Bug
-
Status: Resolved
-
P3
-
Resolution: Cannot Reproduce
-
None
Description
There are two issues related to runtime_type_check, both of them could be reproduced by TypeHintsTest.test_deterministic_key test.
1. runtime_type_check fails with user defined custom class types. because the type given to the type hint and the type that was created during deserialization are not identical.
Repro: Enable runtime_type_check
2. Using repl mode triggers runtime_type_check, even though the default is false.
Repro: change to lines = ['banana,fruit,3', 'kiwi,fruit,2', 'kiwi,fruit,2', 'zucchini,veg,3'] and use repl mode.