Commit 47b229c1 authored by Alexander Schrode's avatar Alexander Schrode Committed by oroulet

add integer and uinteger

For completness, these datatypes are abstract! If they are used in structs, abstract types are either Variant or ExtensionObjects.
If they only contain basic types (int16, float, double..) they are Variants.
parent 6e5b28fb
......@@ -927,6 +927,13 @@ def get_shape(mylist):
return dims
# For completness, these datatypes are abstract!
# If they are used in structs, abstract types are either Variant or ExtensionObjects.
# If they only contain basic types (int16, float, double..) they are Variants
UInteger = Variant
Integer = Variant
@dataclass(frozen=True)
class DataValue:
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment