From 9b0c681e2d7e708a07e34d9c08e4424bdd4f5ebc Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 20 Feb 2019 13:49:23 -0800 Subject: [PATCH] bpo-31982: Improve sequence of presentation in ChainMap docs (GH-11960) https://bugs.python.org/issue31982 --- Doc/library/collections.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 3fa8b32ff0..bde7b6e900 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -163,8 +163,8 @@ contexts:: e.maps[-1] # Root context -- like Python's globals() e.parents # Enclosing context chain -- like Python's nonlocals - d['x'] # Get first key in the chain of contexts d['x'] = 1 # Set value in current context + d['x'] # Get first key in the chain of contexts del d['x'] # Delete from current context list(d) # All nested values k in d # Check all nested values -- 2.49.0