Indent with tabs.
This commit is contained in:
+11
-11
@@ -29,20 +29,20 @@ S = ()
|
|||||||
|
|
||||||
|
|
||||||
def J(text, stack=S, dictionary=D):
|
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):
|
def V(text, stack=S, dictionary=D):
|
||||||
tp = TracePrinter()
|
tp = TracePrinter()
|
||||||
try:
|
try:
|
||||||
run(text, stack, dictionary, tp.viewer)
|
run(text, stack, dictionary, tp.viewer)
|
||||||
except:
|
except:
|
||||||
exc = format_exc()
|
exc = format_exc()
|
||||||
tp.print_()
|
tp.print_()
|
||||||
print '-' * 73
|
print '-' * 73
|
||||||
print exc
|
print exc
|
||||||
else:
|
else:
|
||||||
tp.print_()
|
tp.print_()
|
||||||
|
|
||||||
|
|
||||||
define = lambda text: DefinitionWrapper.add_def(text, D)
|
define = lambda text: DefinitionWrapper.add_def(text, D)
|
||||||
|
|||||||
Reference in New Issue
Block a user