Cleaning up some comments from berker

This commit is contained in:
Bob Tolbert 2013-12-26 20:46:48 -07:00
parent 765dba3e56
commit 5040c29946
3 changed files with 7 additions and 4 deletions

View File

@ -32,6 +32,10 @@ Command line options
.. versionadded:: 0.9.11
.. cmdoption:: --show_tracebacks
Print extended tracebacks for Hy exceptions.
.. cmdoption:: -v
Print the Hy version number and exit.

View File

@ -34,7 +34,7 @@ class HyError(Exception):
try:
from clint.textui import colored
except:
except Exception:
class colored:
@staticmethod

View File

@ -75,9 +75,8 @@ def import_file_to_module(module_name, fpath):
eval(ast_compile(_ast, fpath, "exec"), mod.__dict__)
except (HyTypeError, LexException) as e:
if e.source is None:
fp = open(fpath, 'rt')
e.source = fp.read()
fp.close()
with open(fpath, 'rt') as fp:
e.source = fp.read()
e.filename = fpath
raise
except Exception: