From 12e955624e55dc9bc001976031bcfc67aed031d0 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Fri, 22 Sep 2023 20:30:52 +0800 Subject: [PATCH] ... --- scripts/run_tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/run_tests.py b/scripts/run_tests.py index 54174faa..82881ce6 100644 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -34,6 +34,8 @@ def test_dir(path): print("TEST FAILED! Press any key to continue...") input() +print('CPython:', str(sys.version).replace('\n', '')) +print('System:', '64-bit' if sys.maxsize > 2**32 else '32-bit') if len(sys.argv) == 2: assert 'benchmark' in sys.argv[1]