From: Brett Cannon Date: Fri, 16 Jul 2010 19:26:23 +0000 (+0000) Subject: Add comma grouping to max result so it's easier to read. X-Git-Tag: v3.2a1~185 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cbe1a4e28fb8dcd9fa1a17a1160ccc1c2ff9ff99;p=thirdparty%2FPython%2Fcpython.git Add comma grouping to max result so it's easier to read. --- diff --git a/Lib/importlib/test/benchmark.py b/Lib/importlib/test/benchmark.py index 90cb7dc27bbd..6c8978fdb0ee 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__':