Author: Maciej Fijalkowski <[email protected]> Branch: single-run Changeset: r228:4a86ac0a48ef Date: 2013-08-06 22:39 +0200 http://bitbucket.org/pypy/benchmarks/changeset/4a86ac0a48ef/
Log: We no longer need that (thank god) diff --git a/nullpython.py b/nullpython.py deleted file mode 100755 --- a/nullpython.py +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/python -'''This is a dummy that does nothing except that it returns 1 -second for every round of the benchmark. - -You can use this as the baseline interpreter if you are only -interested in the time of the changed interpreter, but not -in the difference to a baseline interpreter. -''' -from own import util -import optparse - -if __name__ == '__main__': - parser = optparse.OptionParser( - usage="%prog [options]", - description="Test the performance of the Go benchmark") - util.add_standard_options_to(parser) - options, args = parser.parse_args() - - main = lambda n: [0.0001 for x in range(options.num_runs)] - util.run_benchmark(options, options.num_runs, main) _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
