Ensure we use the native dictionary for more recent IFF versions (and correct issues with pointers and chars).

This commit is contained in:
Mike Auty
2017-06-23 15:44:58 +01:00
parent e1c1981ed7
commit d79d428edc
3 changed files with 20 additions and 14 deletions
+4
View File
@@ -77,6 +77,10 @@ class Float(PrimitiveObject, float):
"""Primitive Object that handles double or floating point numbers"""
_struct_type = float
class Char(PrimitiveObject, str):
"""Primitive Object that handles characters"""
_struct_type = str
class Bytes(PrimitiveObject, bytes):
"""Primitive Object that handles specific series of bytes"""