diff options
Diffstat (limited to 'Lib/shelve.py')
-rw-r--r-- | Lib/shelve.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shelve.py b/Lib/shelve.py index 43033ba..0809b5e 100644 --- a/Lib/shelve.py +++ b/Lib/shelve.py @@ -15,7 +15,7 @@ object): d[key] = data # store data at key (overwrites old data if # using an existing key) - data = d[key] # retrieve a COPY of the data at key (raise + data = d[key] # retrieve a COPY of the data at key (raise # KeyError if no such key) -- NOTE that this # access returns a *copy* of the entry! del d[key] # delete data stored at key (raises KeyError |