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.
This commit is contained in:
Tim Peters 2006-05-11 16:37:42 +00:00
parent 7cadf59e14
commit 0ebf27aad9
1 changed files with 0 additions and 2 deletions

View File

@ -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()