summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@gmail.com>2020-03-06 17:24:08 (GMT)
committerGitHub <noreply@github.com>2020-03-06 17:24:08 (GMT)
commit57c9d1725689dde068a7fccaa7500772ecd16d2e (patch)
treefb7f7ecce58aa31d998f12e8f7a8b296667e535d /Misc
parent9566842e892c1f600e1dcfadaab4643be8f32901 (diff)
downloadcpython-57c9d1725689dde068a7fccaa7500772ecd16d2e.zip
cpython-57c9d1725689dde068a7fccaa7500772ecd16d2e.tar.gz
cpython-57c9d1725689dde068a7fccaa7500772ecd16d2e.tar.bz2
bpo-36144: Implement defaultdict union (GH-18729)
For PEP 585 (this isn't in the PEP but is an obvious follow-up).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-02-29-15-54-08.bpo-36144.4GgTZs.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-02-29-15-54-08.bpo-36144.4GgTZs.rst b/Misc/NEWS.d/next/Library/2020-02-29-15-54-08.bpo-36144.4GgTZs.rst
new file mode 100644
index 0000000..416d5ac
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-02-29-15-54-08.bpo-36144.4GgTZs.rst
@@ -0,0 +1 @@
+:class:`collections.defaultdict` now implements ``|`` (:pep:`584`).