mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
#6045: provide at least get() and setdefault() for all dbm modules.
This commit is contained in:
parent
da72231c9f
commit
d9e833c70a
5 changed files with 63 additions and 5 deletions
|
@ -32,6 +32,10 @@ class TestGdbm(unittest.TestCase):
|
|||
key_set.remove(key)
|
||||
key = self.g.nextkey(key)
|
||||
self.assertRaises(KeyError, lambda: self.g['xxx'])
|
||||
# get() and setdefault() work as in the dict interface
|
||||
self.assertEqual(self.g.get(b'xxx', b'foo'), b'foo')
|
||||
self.assertEqual(self.g.setdefault(b'xxx', b'foo'), b'foo')
|
||||
self.assertEqual(self.g[b'xxx'], b'foo')
|
||||
|
||||
def test_error_conditions(self):
|
||||
# Try to open a non-existent database.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue