From: Andrew Svetlov Date: Thu, 4 Oct 2012 16:29:25 +0000 (+0300) Subject: Fix typo in documentation for collections.ChainMap, thanks to Olivier Bernard from... X-Git-Tag: v3.4.0a1~2383^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a8db9cd1df9026713503468053b903e616fd148;p=python Fix typo in documentation for collections.ChainMap, thanks to Olivier Bernard from docs@ --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index dc76ea5ee3..7979f076f4 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 b137613e07..da7a434fa5 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