# Feature or enhancement Add better `struct.Struct` repr # Pitch ```py >>> 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: ```py >>> import struct >>> struct.Struct('i') Struct('i') ``` <!-- gh-linked-prs --> ### Linked PRs * gh-107407 <!-- /gh-linked-prs -->
Feature or enhancement
Add better
struct.StructreprPitch
Hmm, what is the format of this struct? It is not clear from repr.
Something like this would be better:
Linked PRs
struct.Structrepr #107407