diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-05-11 16:37:42 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-05-11 16:37:42 +0000 |
commit | 0ebf27aad939d88cf2a35fc9197a3b72ce698766 (patch) | |
tree | 1a8e05dff00cf73256f8e2d9efd47c3a49f3994c | |
parent | 7cadf59e14d87dbb6a8bfa0b7301f937c03a269c (diff) | |
download | cpython-git-0ebf27aad939d88cf2a35fc9197a3b72ce698766.tar.gz |
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.
-rw-r--r-- | Lib/bsddb/test/test_thread.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/bsddb/test/test_thread.py b/Lib/bsddb/test/test_thread.py index 61a0eb3380..31964f0b22 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() |