We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
struct.Struct
Add betterstruct.Struct repr
>>>importstruct>>>struct.Struct('i')<_struct.Structat0x00223FC2C7290>
Hmm, what is the format of this struct? It is not clear from repr.
Something like this would be better:
>>>importstruct>>>struct.Struct('i')Struct('i')