summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-28 19:26:56 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-01-28 19:26:56 (GMT)
commit1fd77708e3813a28f023671c112231a81bb631f0 (patch)
tree498fb92208b470068315bb7b10181d687a8aba9e /Lib
parent087f8ae4cf34ec7653656f6d4a210bf2a532af9b (diff)
downloadcpython-1fd77708e3813a28f023671c112231a81bb631f0.zip
cpython-1fd77708e3813a28f023671c112231a81bb631f0.tar.gz
cpython-1fd77708e3813a28f023671c112231a81bb631f0.tar.bz2
Another fix for the bsddb3 tests
Diffstat (limited to 'Lib')
-rw-r--r--Lib/bsddb/test/test_sequence.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bsddb/test/test_sequence.py b/Lib/bsddb/test/test_sequence.py
index f998df7..e630f1a 100644
--- a/Lib/bsddb/test/test_sequence.py
+++ b/Lib/bsddb/test/test_sequence.py
@@ -24,7 +24,7 @@ class DBSequenceTest(unittest.TestCase):
pass
tempfile.tempdir = self.homeDir
self.filename = os.path.split(tempfile.mktemp())[1]
- tempfile.tempdir = old_tempfile_tempdir
+ tempfile.tempdir = None
self.dbenv = db.DBEnv()
self.dbenv.open(self.homeDir, db.DB_CREATE | db.DB_INIT_MPOOL, 0o666)