Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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

Merged
ericvsmith merged 6 commits intopython:mainfromkwsp:fix-issue-35540
Oct 7, 2022

Conversation

kwsp
Copy link
Contributor

@kwspkwsp commentedMar 22, 2022
edited by bedevere-bot
Loading

https://bugs.python.org/issue35540

dataclasses.asdict breaks when there aredefaultdicts 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.

Sincedataclasses.asdict alreadysupportsNamedTuples, I think its fair thatdefaultdict, which is also in the standard library, does not breakdataclasses.

Test:

fromdataclassesimportdataclass,asdictfromtypingimportDefaultDict,Listfromcollectionsimportdefaultdict@dataclassclassC:mp:DefaultDict[str,List]dd=defaultdict(list)dd["x"].append(12)c=C(mp=dd)d=asdict(c)# throws "TypeError: first argument must be callable or None"assertd== {"mp": {"x": [12]}}

https://bugs.python.org/issue35540

tscheepers reacted with thumbs up emoji
@the-knights-who-say-ni

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 Missing

Our records indicate the following people have not signed the CLA:

@kwsp

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
before our records are updated.

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.
@MaxwellDupre
Copy link
Contributor

Could you add a test please?

@kwsp
Copy link
ContributorAuthor

kwsp commentedMay 4, 2022

Could you add a test please?

I just added a test for this

Copy link
Contributor

@MaxwellDupreMaxwellDupre left a 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.

@ericvsmithericvsmith self-assigned thisOct 4, 2022
@ericvsmithericvsmith merged commitc46a423 intopython:mainOct 7, 2022
carljm added a commit to carljm/cpython that referenced this pull requestOct 8, 2022
* 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)
mpage pushed a commit to mpage/cpython that referenced this pull requestOct 11, 2022
@akitathai94
Copy link

akitathai94 commentedJun 29, 2024
edited
Loading

Does this merge fix the issue yet cause it still throws error in Python 3.11

@kwsp
Copy link
ContributorAuthor

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

https://docs.python.org/3.12/whatsnew/changelog.html

akitathai94 reacted with thumbs up emoji

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@ericvsmithericvsmithericvsmith left review comments

@MaxwellDupreMaxwellDupreMaxwellDupre approved these changes

Assignees

@ericvsmithericvsmith

Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

7 participants
@kwsp@the-knights-who-say-ni@MaxwellDupre@akitathai94@ericvsmith@ezio-melotti@bedevere-bot

[8]ページ先頭

©2009-2025 Movatter.jp