summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristopher Hunt <chrahunt@gmail.com>2019-02-12 11:50:49 (GMT)
committerEric V. Smith <ericvsmith@users.noreply.github.com>2019-02-12 11:50:49 (GMT)
commitb01786c8812c4cc24dd561b5941025bdd6f444c0 (patch)
tree7ce684adbbc729ae848b7190a87631ed9d92ef14 /Misc
parenta31f4cc881992e84d351957bd9ac1a92f882fa39 (diff)
downloadcpython-b01786c8812c4cc24dd561b5941025bdd6f444c0.zip
cpython-b01786c8812c4cc24dd561b5941025bdd6f444c0.tar.gz
cpython-b01786c8812c4cc24dd561b5941025bdd6f444c0.tar.bz2
bpo-35960: Fix dataclasses.field throwing away empty metadata. (GH-11815)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-10-20-57-12.bpo-35960.bh-6Ja.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-02-10-20-57-12.bpo-35960.bh-6Ja.rst b/Misc/NEWS.d/next/Library/2019-02-10-20-57-12.bpo-35960.bh-6Ja.rst
new file mode 100644
index 0000000..6713584
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-02-10-20-57-12.bpo-35960.bh-6Ja.rst
@@ -0,0 +1,2 @@
+Fix :func:`dataclasses.field` throwing away empty mapping objects passed as
+metadata.