Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.1k
bpo-35540 dataclasses.asdict support defaultdict fields#32056
New issue
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
the-knights-who-say-ni commentedMar 22, 2022
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept this contribution by verifying everyone involved has signed thePSF contributor agreement (CLA). CLA MissingOur records indicate the following people have not signed the CLA: For legal reasons we need all the people listed to sign the CLA before we can look at your contribution. Please followthe steps outlined in the CPython devguide to rectify this issue. If you have recently signed the CLA, please wait at least one business day You cancheck yourself to see if the CLA has been received. Thanks again for the contribution, we look forward to reviewing it! |
dataclasses.asdict breaks when there are `defaultdict`s in the dataclassattributes because it assumes `defaultdict` and `dict` are the same thing,but in reality `defaultdict` takes a default_factory as the first argumentin its constructor. This change adds support for defaultdict fields.
Could you add a test please? |
I just added a test for this |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Tests ok on Fedora.
Ref to bugs.python.org/issue35540 is not future proof, assume will be turned off at some time.
Uh oh!
There was an error while loading.Please reload this page.
* main: bpo-35540 dataclasses.asdict now supports defaultdict fields (pythongh-32056)pythonGH-91052: Add C API for watching dictionaries (pythonGH-31787) bpo-38693: Use f-strings instead of str.format() within importlib (python#17058)
akitathai94 commentedJun 29, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Does this merge fix the issue yet cause it still throws error in Python 3.11 |
This was merged in 3.12 and not backported to 3.11 |
Uh oh!
There was an error while loading.Please reload this page.
https://bugs.python.org/issue35540
dataclasses.asdict breaks when there are
defaultdict
s in the dataclass attributes because it assumesdefaultdict
anddict
are the same thing, but in realitydefaultdict
takes a default_factory as the first argument in its constructor.Since
dataclasses.asdict
alreadysupportsNamedTuples
, I think its fair thatdefaultdict
, which is also in the standard library, does not breakdataclasses
.Test:
https://bugs.python.org/issue35540