This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: dataclasses: repr of _DataclassParams objects should use repr of each member
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: eric.smith Nosy List: eric.smith, miss-islington, ned.deily
Priority: Keywords: patch

Created on 2018-05-14 17:42 by eric.smith, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 6812 merged eric.smith, 2018-05-14 17:47
PR 6831 merged miss-islington, 2018-05-14 21:18
Messages (3)
msg316542 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2018-05-14 17:42
This is mostly a debugging aid, but if you need it, it's very handy.
msg316582 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2018-05-14 21:16
New changeset 3059042410dce69806b94be72d5c8055d616f3a3 by Eric V. Smith in branch 'master':
bpo-33502: dataclass._Dataclassparams repr: use repr of each member. (GH-6812)
https://github.com/python/cpython/commit/3059042410dce69806b94be72d5c8055d616f3a3
msg316605 - (view) Author: miss-islington (miss-islington) Date: 2018-05-14 23:57
New changeset b57aeac82ce6ee3d64cef3b6f7e9f9f2d7813f70 by Miss Islington (bot) in branch '3.7':
bpo-33502: dataclass._Dataclassparams repr: use repr of each member. (GH-6812)
https://github.com/python/cpython/commit/b57aeac82ce6ee3d64cef3b6f7e9f9f2d7813f70
History
Date User Action Args
2022-04-11 14:59:00adminsetgithub: 77683
2018-05-15 00:47:22eric.smithsetpriority: release blocker ->
status: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-05-14 23:57:33miss-islingtonsetnosy: + miss-islington
messages: + msg316605
2018-05-14 21:18:01miss-islingtonsetpull_requests: + pull_request6514
2018-05-14 21:16:54eric.smithsetmessages: + msg316582
2018-05-14 17:47:37eric.smithsetkeywords: + patch
stage: patch review
pull_requests: + pull_request6498
2018-05-14 17:42:19eric.smithcreate