Fix missing line from example shell session (GH-9143)

This commit is contained in:
Raymond Hettinger 2018-09-10 18:43:08 -07:00 committed by GitHub
parent ffa198c642
commit 2064bb6d57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -198,6 +198,7 @@ updates keys found deeper in the chain::
>>> d['lion'] = 'orange' # update an existing key two levels down
>>> d['snake'] = 'red' # new keys get added to the topmost dict
>>> del d['elephant'] # remove an existing key one level down
>>> d # display result
DeepChainMap({'zebra': 'black', 'snake': 'red'}, {}, {'lion': 'orange'})