From 68b0109595b875361d18358f9c5cc12eed9bb535 Mon Sep 17 00:00:00 2001 From: rocky Date: Sun, 17 Nov 2024 11:27:03 -0500 Subject: [PATCH] Reinstate mmatera's x + x example --- mathics/builtin/trace.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mathics/builtin/trace.py b/mathics/builtin/trace.py index 43856fdcb..301089945 100644 --- a/mathics/builtin/trace.py +++ b/mathics/builtin/trace.py @@ -357,11 +357,11 @@ class TraceEvaluation(Builtin): The 'ShowTimeBySteps' option prints the elapsed time before an evaluation occurs. - >> TraceEvaluation[(x + 1)^2] + >> TraceEvaluation[(x + x)^2] | ... = ... - >> TraceEvaluation[(x + 1)^2, ShowTimeBySteps->True] + >> TraceEvaluation[(x + x)^2, ShowTimeBySteps->True] | ... = ... """