[Python-3000-checkins] r60396 - python/branches/py3k/Lib/bsddb/test/test_sequence.py

christian.heimes python-3000-checkins at python.org
Mon Jan 28 20:26:56 CET 2008


Author: christian.heimes
Date: Mon Jan 28 20:26:56 2008
New Revision: 60396

Modified:
   python/branches/py3k/Lib/bsddb/test/test_sequence.py
Log:
Another fix for the bsddb3 tests

Modified: python/branches/py3k/Lib/bsddb/test/test_sequence.py
==============================================================================
--- python/branches/py3k/Lib/bsddb/test/test_sequence.py	(original)
+++ python/branches/py3k/Lib/bsddb/test/test_sequence.py	Mon Jan 28 20:26:56 2008
@@ -24,7 +24,7 @@
             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)


More information about the Python-3000-checkins mailing list