We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 722cb6a commit 77b93adCopy full SHA for 77b93ad
2 files changed
mathics/builtin/base.py
@@ -1,4 +1,5 @@
1
# -*- coding: utf-8 -*-
2
+# cython: language_level=3
3
4
import re
5
import sympy
mathics/builtin/files.py
"""
File Operations
@@ -2186,7 +2187,8 @@ def check_options(options):
2186
2187
result = {}
2188
trace_get = evaluation.parse('Settings`$TraceGet')
2189
if options["System`Trace"].to_python() or trace_get.evaluate(evaluation) == SymbolTrue:
- result["TraceFn"] = print
2190
+ import builtins
2191
+ result["TraceFn"] = builtins.print
2192
else:
2193
result["TraceFn"] = None
2194
0 commit comments