From: david-sarah Date: Fri, 22 Jul 2011 03:54:02 +0000 (-0700) Subject: misc/build_helpers/run_trial.py: undo change to block pywin32 (it didn't work because... X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=91c7cf9007ae5b5d6aff18758d6e783fd473a47e;p=tahoe-lafs%2Ftahoe-lafs.git misc/build_helpers/run_trial.py: undo change to block pywin32 (it didn't work because run_trial.py is no longer used). refs #1334 --- diff --git a/misc/build_helpers/run_trial.py b/misc/build_helpers/run_trial.py index 246572b9..e398a7a7 100644 --- a/misc/build_helpers/run_trial.py +++ b/misc/build_helpers/run_trial.py @@ -2,23 +2,6 @@ import os, sys, re, glob -if sys.platform == "win32": - # Buildbot depends on pywin32, but we don't want it to be available to the code under test. - def not_pywin32(entry): - dirs = os.path.normcase(entry).replace('/', '\\').split('\\') - return "win32" not in dirs and "pythonwin" not in dirs - - print sys.path - sys.path = filter(not_pywin32, sys.path) - print sys.path - - try: - import win32api - except ImportError: - pass # expected - else: - raise AssertionError("We were unable to expunge pywin32 from the sys.path.") - def read_version_py(infname): try: