From 996bba9d1086babd2e082524b46b34ec749d7ca2 Mon Sep 17 00:00:00 2001 From: Dorian Pula Date: Tue, 5 Nov 2019 22:40:48 -0500 Subject: [PATCH] Add notes on using larger numberical sets. --- batch_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/batch_test.py b/batch_test.py index 1f9dd3b..e7e2cfe 100644 --- a/batch_test.py +++ b/batch_test.py @@ -8,6 +8,8 @@ import unit_converter @pytest.fixture(scope="module") def batch_numbers(): return [random.random() * 100 for x in range(1000)] + # The larger the range of numbers, the closer the Rust version is to Python. + # e.g. return [random.random() * 100 for x in range(1000000)] def batch_python_unit_converter(temperatures):