We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
struct.Struct
Add better struct.Struct repr
>>> 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')
The text was updated successfully, but these errors were encountered:
gh-107406: Add better struct.Struct repr (#107407)
e407cea
Successfully merging a pull request may close this issue.
Feature or enhancement
Add better
struct.Struct
reprPitch
Hmm, what is the format of this struct? It is not clear from repr.
Something like this would be better:
Linked PRs
struct.Struct
repr #107407The text was updated successfully, but these errors were encountered: