Searched refs:attributedict (Results 1 – 1 of 1) sorted by relevance
27 def __new__(cls, clsname, superclasses, attributedict): argument29 fields = attributedict['__fields__']32 attributedict['__names__'] = field_names33 s = struct.Struct(attributedict.get('__endian__', '') + ''.join(field_types))34 attributedict['__struct__'] = s35 attributedict['size'] = s.size36 return type.__new__(cls, clsname, superclasses, attributedict)
Completed in 3 milliseconds