# HG changeset patch # User Oleg Oshmyan # Date 1305768093 -3600 # Node ID 652028850ea41faf0eba0c7f9119a38204f02953 # Parent 580f0f4687c3086a829bfc77d678b6b9c223becb Removed useless arguments to call() from testcases.BatchTestCase.test() diff -r 580f0f4687c3 -r 652028850ea4 testcases.py --- a/testcases.py Mon May 16 21:42:43 2011 +0100 +++ b/testcases.py Thu May 19 02:21:33 2011 +0100 @@ -314,7 +314,7 @@ with contextmgr: with open(inputdatafname) as infile: with tempfile.TemporaryFile('w+') if options.erase and (not case.validator or callable(case.validator)) else open(case.problem.config.outname, 'w+') as outfile: - call(case.problem.config.path, case=case, stdin=infile, stdout=outfile, stderr=devnull, universal_newlines=True, bufsize=-1) + call(case.problem.config.path, case=case, stdin=infile, stdout=outfile, stderr=devnull) if config.globalconf.force_zero_exitcode and case.process.returncode or case.process.returncode < 0: raise NonZeroExitCode(case.process.returncode) case.has_called_back = True