Closed
Description
Feature or enhancement
Add better struct.Struct
repr
Pitch
>>> import struct
>>> struct.Struct('i')
<_struct.Struct at 0x00223FC2C7290>
Hmm, what is the format of this struct? It is not clear from repr.
Something like this would be better:
>>> import struct
>>> struct.Struct('i')
Struct('i')