Skip to content

Commit 8573bcf

Browse files
committed
remove debug info
1 parent 1007482 commit 8573bcf

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

more_math/helper_functions.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,7 @@ def comonLazy(expr, a, b=None, c=None, d=None, w=0.0, x=0.0, y=0.0, z=0.0):
4646
lexer = MathExprLexer(input_stream)
4747
stream = CommonTokenStream(lexer)
4848
stream.fill()
49-
print("Tokens:", stream.tokens)
5049
for token in filter(lambda t: t.type == MathExprParser.VARIABLE, stream.tokens):
51-
print("Token:", token.text)
52-
print("Variables:", variables)
53-
print("Token in variables:", token.text in variables)
54-
print("Variable is None:", variables.get(token.text) is None)
5550
if token.text in variables and variables[token.text] is None:
5651
need_eval.append(token.text)
57-
print ("Need eval:", need_eval)
5852
return need_eval

0 commit comments

Comments
 (0)