Commit f59e7c56 authored by Michel Pelletier's avatar Michel Pelletier

Made tab widths 4 spaces, and 80 columned the code

parent f4e5af10
......@@ -126,7 +126,8 @@ class Let:
for i in range(len(args)):
name,expr = args[i]
if expr[:1]=='"' and expr[-1:]=='"' and len(expr) > 1: # expr shorthand
if expr[:1]=='"' and expr[-1:]=='"' and len(expr) > 1:
# expr shorthand
expr=expr[1:-1]
try: args[i] = name, Eval(expr, expr_globals).eval
except SyntaxError, v:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment