diff options
author | Brandt Bucher <brandtbucher@gmail.com> | 2020-03-13 09:06:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 09:06:04 -0700 |
commit | 6d674a1bf456945eb758e85c11484a9f1494f2b4 (patch) | |
tree | 667d42a0fb1b9d939cc8a890e5d07351c10f18aa /Doc/library | |
parent | d648ef10c5c7659ed3c9f34d5c751dc55e2c6007 (diff) | |
download | cpython-git-6d674a1bf456945eb758e85c11484a9f1494f2b4.tar.gz |
bpo-36144: OrderedDict Union (PEP 584) (#18967)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/collections.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index f4a383c8ea..72d1052064 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -1123,6 +1123,10 @@ anywhere a regular dictionary is used. passed to the :class:`OrderedDict` constructor and its :meth:`update` method. +.. versionchanged:: 3.9 + Added merge (``|``) and update (``|=``) operators, specified in :pep:`584`. + + :class:`OrderedDict` Examples and Recipes ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |