diff options
author | Brandt Bucher <brandtbucher@gmail.com> | 2020-02-25 03:47:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-25 03:47:34 (GMT) |
commit | eb8ac57af26c4eb96a8230eba7492ce5ceef7886 (patch) | |
tree | a19866e216c6c7ef6c75de0f653bf653cc55ac67 /Misc | |
parent | ba22e8f174309979d90047c5dc64fcb63bc2c32e (diff) | |
download | cpython-eb8ac57af26c4eb96a8230eba7492ce5ceef7886.zip cpython-eb8ac57af26c4eb96a8230eba7492ce5ceef7886.tar.gz cpython-eb8ac57af26c4eb96a8230eba7492ce5ceef7886.tar.bz2 |
bpo-36144: Dictionary Union (PEP 584) (#12088)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-03-02-23-03-34.bpo-36144.LRl4LS.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-03-02-23-03-34.bpo-36144.LRl4LS.rst b/Misc/NEWS.d/next/Core and Builtins/2019-03-02-23-03-34.bpo-36144.LRl4LS.rst new file mode 100644 index 0000000..7d6d076 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-03-02-23-03-34.bpo-36144.LRl4LS.rst @@ -0,0 +1,2 @@ +:class:`dict` (and :class:`collections.UserDict`) objects now support PEP 584's merge (``|``) and update (``|=``) operators.
+Patch by Brandt Bucher.
|