git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187918
91177308-0d34-0410-b5e6-
96231b3b80d8
# The name of the test runner.
self.progname = progname
# The items to add to the PATH environment variable.
- self.path = list(map(str, path))
+ self.path = list([str(p) for p in path])
self.quiet = bool(quiet)
self.useValgrind = bool(useValgrind)
self.valgrindLeakCheck = bool(valgrindLeakCheck)
# Strip the trailing newline and any extra whitespace.
return ln.strip()
- script = map(processLine, script)
+ script = [processLine(ln)
+ for ln in script]
# Verify the script contains a run line.
if not script:
__author__ = 'Daniel Dunbar'
__email__ = 'daniel@zuster.org'
__versioninfo__ = (0, 3, 0)
-__version__ = '.'.join(map(str, __versioninfo__)) + 'dev'
+__version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev'
__all__ = []