Kaydet (Commit) 631507d1 authored tarafından Antoine Pitrou's avatar Antoine Pitrou

Issue #11141: Fix the shelve documentation to use a list, not a range object.

Patch by SilentGhost.
üst da397903
......@@ -182,6 +182,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
......
......@@ -169,8 +169,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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment