From: Gregory P. Smith Date: Wed, 9 Jul 2003 05:33:14 +0000 (+0000) Subject: fix to work on python <= 2.1 X-Git-Tag: v2.3c1~143 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ad30fa03a4d8dc163141a5e73be52760f15864c0;p=thirdparty%2FPython%2Fcpython.git fix to work on python <= 2.1 --- diff --git a/Lib/bsddb/test/test_join.py b/Lib/bsddb/test/test_join.py index 08784aceb157..f434c541b228 100644 --- a/Lib/bsddb/test/test_join.py +++ b/Lib/bsddb/test/test_join.py @@ -72,13 +72,13 @@ class JoinTestCase(unittest.TestCase): # create and populate primary index priDB = db.DB(self.env) priDB.open(self.filename, "primary", db.DB_BTREE, db.DB_CREATE) - map(lambda t: apply(priDB.put, t), ProductIndex) + map(lambda t, priDB=priDB: apply(priDB.put, t), ProductIndex) # create and populate secondary index secDB = db.DB(self.env) secDB.set_flags(db.DB_DUP | db.DB_DUPSORT) secDB.open(self.filename, "secondary", db.DB_BTREE, db.DB_CREATE) - map(lambda t: apply(secDB.put, t), ColorIndex) + map(lambda t, secDB=secDB: apply(secDB.put, t), ColorIndex) sCursor = None jCursor = None