summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric V. Smith <ericvsmith@users.noreply.github.com>2021-04-11 01:28:42 (GMT)
committerGitHub <noreply@github.com>2021-04-11 01:28:42 (GMT)
commit750f484752763fe9ac1d6455780aabcb67f25508 (patch)
tree263bacbb75386ab2bf327bcbc7bfcc949140efd6 /Misc
parentc3a478b7e56b92bcd980b7ded34005f8b339602e (diff)
downloadcpython-750f484752763fe9ac1d6455780aabcb67f25508.zip
cpython-750f484752763fe9ac1d6455780aabcb67f25508.tar.gz
cpython-750f484752763fe9ac1d6455780aabcb67f25508.tar.bz2
bpo-43764: Add match_args=False parameter to dataclass decorator and to make_dataclasses function. (GH-25337)
Add match_args=False parameter to dataclass decorator and to make_dataclass function.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-04-10-18-23-09.bpo-43764.Le5KJp.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-04-10-18-23-09.bpo-43764.Le5KJp.rst b/Misc/NEWS.d/next/Library/2021-04-10-18-23-09.bpo-43764.Le5KJp.rst
new file mode 100644
index 0000000..555aad0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-04-10-18-23-09.bpo-43764.Le5KJp.rst
@@ -0,0 +1,2 @@
+Add match_args parameter to @dataclass decorator to allow suppression of
+__match_args__ generation.