Merge with bsddb3 2002.11.23.10.42.36

This commit is contained in:
Martin v. Löwis 2002-11-23 11:26:07 +00:00
parent a797d8150d
commit b2c7affbaa
6 changed files with 100 additions and 47 deletions

View file

@ -210,7 +210,7 @@ class BTreeShelveTestCase(BasicShelveTestCase):
class HashShelveTestCase(BasicShelveTestCase):
dbtype = db.DB_BTREE
dbtype = db.DB_HASH
dbflags = db.DB_CREATE
@ -220,7 +220,7 @@ class ThreadBTreeShelveTestCase(BasicShelveTestCase):
class ThreadHashShelveTestCase(BasicShelveTestCase):
dbtype = db.DB_BTREE
dbtype = db.DB_HASH
dbflags = db.DB_CREATE | db.DB_THREAD
@ -261,7 +261,7 @@ class EnvBTreeShelveTestCase(BasicEnvShelveTestCase):
class EnvHashShelveTestCase(BasicEnvShelveTestCase):
envflags = 0
dbtype = db.DB_BTREE
dbtype = db.DB_HASH
dbflags = db.DB_CREATE
@ -273,7 +273,7 @@ class EnvThreadBTreeShelveTestCase(BasicEnvShelveTestCase):
class EnvThreadHashShelveTestCase(BasicEnvShelveTestCase):
envflags = db.DB_THREAD
dbtype = db.DB_BTREE
dbtype = db.DB_HASH
dbflags = db.DB_CREATE | db.DB_THREAD