summaryrefslogtreecommitdiff
path: root/Lib/sqlite3/test
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2008-03-05 05:20:44 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2008-03-05 05:20:44 +0000
commiteed776b5d6afe6e02f861ffe960cb8899c664087 (patch)
tree61d5f101f4a824945d3f3a9dfeaf5eed1920632c /Lib/sqlite3/test
parentd5ae778aaef13a0fe5b0a56c0e5f4fdc53882ed3 (diff)
downloadcpython-eed776b5d6afe6e02f861ffe960cb8899c664087.tar.gz
Catch OSError when trying to remove a file in case removal fails. This
should prevent a failure in tearDown masking any real test failure.
Diffstat (limited to 'Lib/sqlite3/test')
-rw-r--r--Lib/sqlite3/test/transactions.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/Lib/sqlite3/test/transactions.py b/Lib/sqlite3/test/transactions.py
index 14cae25001..d4f7d622ed 100644
--- a/Lib/sqlite3/test/transactions.py
+++ b/Lib/sqlite3/test/transactions.py
@@ -32,7 +32,7 @@ class TransactionTests(unittest.TestCase):
def setUp(self):
try:
os.remove(get_db_path())
- except:
+ except OSError:
pass
self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
@@ -48,7 +48,10 @@ class TransactionTests(unittest.TestCase):
self.cur2.close()
self.con2.close()
- os.unlink(get_db_path())
+ try:
+ os.unlink(get_db_path())
+ except OSError:
+ pass
def CheckDMLdoesAutoCommitBefore(self):
self.cur1.execute("create table test(i)")