From cbe1a4e28fb8dcd9fa1a17a1160ccc1c2ff9ff99 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 16 Jul 2010 19:26:23 +0000 Subject: Add comma grouping to max result so it's easier to read. --- Lib/importlib/test/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/importlib/test/benchmark.py b/Lib/importlib/test/benchmark.py index 90cb7dc..6c8978f 100644 --- a/Lib/importlib/test/benchmark.py +++ b/Lib/importlib/test/benchmark.py @@ -110,7 +110,7 @@ def main(import_): print(result, end=' ') sys.stdout.flush() assert not sys.dont_write_bytecode - print("]", "best is", max(results)) + print("]", "best is", format(max(results), ',d')) if __name__ == '__main__': -- cgit v0.12