summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/ACKS.txt1
-rw-r--r--Doc/library/shelve.rst4
2 files changed, 3 insertions, 2 deletions
diff --git a/Doc/ACKS.txt b/Doc/ACKS.txt
index e73e358..eca54f6 100644
--- a/Doc/ACKS.txt
+++ b/Doc/ACKS.txt
@@ -179,6 +179,7 @@ docs@python.org), and we'll be glad to correct the problem.
* Joakim Sernbrant
* Justin Sheehy
* Charlie Shepherd
+ * SilentGhost
* Michael Simcich
* Ionel Simionescu
* Michael Sloan
diff --git a/Doc/library/shelve.rst b/Doc/library/shelve.rst
index a2f9720..b281814 100644
--- a/Doc/library/shelve.rst
+++ b/Doc/library/shelve.rst
@@ -158,8 +158,8 @@ object)::
klist = list(d.keys()) # a list of all existing keys (slow!)
# as d was opened WITHOUT writeback=True, beware:
- d['xx'] = range(4) # this works as expected, but...
- d['xx'].append(5) # *this doesn't!* -- d['xx'] is STILL range(4)!
+ d['xx'] = [0, 1, 2] # this works as expected, but...
+ d['xx'].append(3) # *this doesn't!* -- d['xx'] is STILL [0, 1, 2]!
# having opened d without writeback=True, you need to code carefully:
temp = d['xx'] # extracts the copy