Reviewers: Karl Klose, Description: Remove semicolons from tools/test.py
Please review this at http://codereview.chromium.org/6822046/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M tools/test.py Index: tools/test.py =================================================================== --- tools/test.py (revision 7581) +++ tools/test.py (working copy) @@ -387,11 +387,11 @@ def Run(self): self.BeforeRun() - result = None; + result = None try: result = self.RunCommand(self.GetCommand()) except: - self.terminate = True; + self.terminate = True raise BreakNowException("Used pressed CTRL+C or IO went wrong") finally: self.AfterRun(result) @@ -713,7 +713,7 @@ def RunTestCases(cases_to_run, progress, tasks): progress = PROGRESS_INDICATORS[progress](cases_to_run) - result = 0; + result = 0 try: result = progress.Run(tasks) except Exception, e: -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
