[Python-3000-checkins] r58025 - python/branches/py3k/Lib/bsddb/test/test_1413192.py

gregory.p.smith python-3000-checkins at python.org
Fri Sep 7 01:06:50 CEST 2007


Author: gregory.p.smith
Date: Fri Sep  7 01:06:50 2007
New Revision: 58025

Modified:
   python/branches/py3k/Lib/bsddb/test/test_1413192.py
Log:
merge r58023 to fix issue1112 on windows.  make this test more robust
and deterministic.


Modified: python/branches/py3k/Lib/bsddb/test/test_1413192.py
==============================================================================
--- python/branches/py3k/Lib/bsddb/test/test_1413192.py	(original)
+++ python/branches/py3k/Lib/bsddb/test/test_1413192.py	Fri Sep  7 01:06:50 2007
@@ -1,7 +1,6 @@
-
-# http://python.org/sf/1413192
+# http://bugs.python.org/issue1413192
 #
-# This test relies on the variable names, see the bug report for details.
+# See the bug report for details.
 # The problem was that the env was deallocated prior to the txn.
 
 import shutil
@@ -15,15 +14,28 @@
 
 env_name = tempfile.mkdtemp()
 
-env = db.DBEnv()
-env.open(env_name, db.DB_CREATE | db.DB_INIT_TXN | db.DB_INIT_MPOOL)
-the_txn = env.txn_begin()
-
-map = db.DB(env)
-map.open('xxx.db',
-         "p", db.DB_HASH, db.DB_CREATE, 0o666, txn=the_txn)
+# Wrap test operation in a class so we can control destruction rather than
+# waiting for the controlling Python executable to exit
+
+class Context:
+
+    def __init__(self):
+        self.env = db.DBEnv()
+        self.env.open(env_name,
+                      db.DB_CREATE | db.DB_INIT_TXN | db.DB_INIT_MPOOL)
+        self.the_txn = self.env.txn_begin()
+
+        self.map = db.DB(self.env)
+        self.map.open('xxx.db', "p",
+                      db.DB_HASH, db.DB_CREATE, 0o666, txn=self.the_txn)
+        del self.env
+        del self.the_txn
+
+
+context = Context()
+del context
 
-# try not to leave a turd (won't help Windows since files are still open)
+# try not to leave a turd
 try:
     shutil.rmtree(env_name)
 except EnvironmentError:


More information about the Python-3000-checkins mailing list