summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandt@python.org>2021-04-08 19:54:34 (GMT)
committerGitHub <noreply@github.com>2021-04-08 19:54:34 (GMT)
commitd92c59f48680122ce0e4d1ccf69d92b983e8db01 (patch)
tree439083fc302e91d4f4819425cbb5a0635f493b48 /Misc
parent28d28e053db6b69d91c2dfd579207cd8ccbc39e7 (diff)
downloadcpython-d92c59f48680122ce0e4d1ccf69d92b983e8db01.zip
cpython-d92c59f48680122ce0e4d1ccf69d92b983e8db01.tar.gz
cpython-d92c59f48680122ce0e4d1ccf69d92b983e8db01.tar.bz2
bpo-43764: Fix `__match_args__` generation logic for dataclasses (GH-25284)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-04-08-09-59-20.bpo-43764.tHjO60.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-04-08-09-59-20.bpo-43764.tHjO60.rst b/Misc/NEWS.d/next/Library/2021-04-08-09-59-20.bpo-43764.tHjO60.rst
new file mode 100644
index 0000000..838dd02
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-04-08-09-59-20.bpo-43764.tHjO60.rst
@@ -0,0 +1,2 @@
+Fix an issue where :data:`~object.__match_args__` generation could fail for
+some :mod:`dataclasses`.