From 1a8db9cd1df9026713503468053b903e616fd148 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Thu, 4 Oct 2012 19:29:25 +0300 Subject: [PATCH] Fix typo in documentation for collections.ChainMap, thanks to Olivier Bernard from docs@ --- Doc/library/collections.rst | 2 +- Misc/ACKS | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index dc76ea5ee36..7979f076f4a 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -159,7 +159,7 @@ contexts:: d['x'] # Get first key in the chain of contexts d['x'] = 1 # Set value in current context - del['x'] # Delete from current context + del d['x'] # Delete from current context list(d) # All nested values k in d # Check all nested values len(d) # Number of nested values diff --git a/Misc/ACKS b/Misc/ACKS index b137613e071..da7a434fa50 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -101,6 +101,7 @@ Ezra Berch Michel Van den Bergh Julian Berman Brice Berna +Olivier Bernard Eric Beser Steven Bethard Stephen Bevan