diff options
| author | Tim Peters <tim.peters@gmail.com> | 2003-07-12 20:23:09 +0000 |
|---|---|---|
| committer | Tim Peters <tim.peters@gmail.com> | 2003-07-12 20:23:09 +0000 |
| commit | 3898a70bcf3be9e21911cd7b99bb498d45f03789 (patch) | |
| tree | 1535b2cf38d10a78ea3bdb3a5bf7d9b5017efcde /Lib/dumbdbm.py | |
| parent | 7dfd5701b20c3566166e148f77591a2912164221 (diff) | |
| download | cpython-git-3898a70bcf3be9e21911cd7b99bb498d45f03789.tar.gz | |
_commit(): Modernization.
Diffstat (limited to 'Lib/dumbdbm.py')
| -rw-r--r-- | Lib/dumbdbm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/dumbdbm.py b/Lib/dumbdbm.py index 1af22b1c1d..db093d4053 100644 --- a/Lib/dumbdbm.py +++ b/Lib/dumbdbm.py @@ -89,8 +89,8 @@ class _Database(UserDict.DictMixin): pass f = _open(self._dirfile, 'w', self._mode) - for key, (pos, siz) in self._index.items(): - f.write("%r, (%d, %d)\n" % (key, pos, siz)) + for key, pos_and_siz_pair in self._index.iteritems(): + f.write("%r, %r\n" % (key, pos_and_siz_pair)) f.close() def __getitem__(self, key): |
