Issue #28240: Fix formatting of the warning.
diff --git a/Lib/timeit.py b/Lib/timeit.py
index d811294..0b5061f 100644
--- a/Lib/timeit.py
+++ b/Lib/timeit.py
@@ -365,8 +365,7 @@
         warnings.warn_explicit("The test results are likely unreliable. "
                                "The worst time (%s) was more than four times "
                                "slower than the best time (%s)."
-                               % (precision,
-                                  format_time(worst), format_time(best)),
+                               % (format_time(worst), format_time(best)),
                                UserWarning, '', 0)
     return None