summaryrefslogtreecommitdiffstats
path: root/Lib/bsddb
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-05-11 16:37:42 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-05-11 16:37:42 (GMT)
commit0ebf27aad939d88cf2a35fc9197a3b72ce698766 (patch)
tree1a8e05dff00cf73256f8e2d9efd47c3a49f3994c /Lib/bsddb
parent7cadf59e14d87dbb6a8bfa0b7301f937c03a269c (diff)
downloadcpython-0ebf27aad939d88cf2a35fc9197a3b72ce698766.zip
cpython-0ebf27aad939d88cf2a35fc9197a3b72ce698766.tar.gz
cpython-0ebf27aad939d88cf2a35fc9197a3b72ce698766.tar.bz2
BaseThreadedTestCase.setup(): stop special-casing WindowsError.
Rev 45964 fiddled with WindowsError, and broke test_bsddb3 on all the Windows buildbot slaves as a result. This should repair it.
Diffstat (limited to 'Lib/bsddb')
-rw-r--r--Lib/bsddb/test/test_thread.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/bsddb/test/test_thread.py b/Lib/bsddb/test/test_thread.py
index 61a0eb3..31964f0 100644
--- a/Lib/bsddb/test/test_thread.py
+++ b/Lib/bsddb/test/test_thread.py
@@ -57,8 +57,6 @@ class BaseThreadedTestCase(unittest.TestCase):
self.homeDir = homeDir
try:
os.mkdir(homeDir)
- except WindowsError, e:
- if e.errno <> 183: raise # ERROR_ALREADY_EXISTS
except OSError, e:
if e.errno <> errno.EEXIST: raise
self.env = db.DBEnv()