Open avg-I opened 9 years ago
The following code would raise an exception:
props = {"key": [boolean_t(False), True]} nv_in = nvlist_in(props)
Actually the same problem applies to integer C types and Python types that should be compatible. E.g., the following fails:
props = {"key": [1, uint64_t(1)]} nv_in = nvlist_in(props)
The following code would raise an exception: