mirror of https://github.com/python/cpython
Fix test_shelve when it uses dumbdbm. Found and fixed by Larry Hastings.
This commit is contained in:
parent
53cbdaa84c
commit
0f3cff58b2
|
@ -203,6 +203,7 @@ class _Database(UserDict.DictMixin):
|
|||
return self._index.keys()
|
||||
|
||||
def __contains__(self, key):
|
||||
key = key.decode("latin-1")
|
||||
return key in self._index
|
||||
|
||||
def iterkeys(self):
|
||||
|
|
Loading…
Reference in New Issue