Indent with tabs.

This commit is contained in:
Simon Forman 2020-04-28 15:28:58 -07:00
parent ddf063973c
commit 176e427116
1 changed files with 11 additions and 11 deletions

View File

@ -29,20 +29,20 @@ S = ()
def J(text, stack=S, dictionary=D):
print stack_to_string(run(text, stack, dictionary)[0])
print stack_to_string(run(text, stack, dictionary)[0])
def V(text, stack=S, dictionary=D):
tp = TracePrinter()
try:
run(text, stack, dictionary, tp.viewer)
except:
exc = format_exc()
tp.print_()
print '-' * 73
print exc
else:
tp.print_()
tp = TracePrinter()
try:
run(text, stack, dictionary, tp.viewer)
except:
exc = format_exc()
tp.print_()
print '-' * 73
print exc
else:
tp.print_()
define = lambda text: DefinitionWrapper.add_def(text, D)