Commit fc532fa2 authored by Robert Bradshaw's avatar Robert Bradshaw

Better unicode error.

parent 5fb3f95f
......@@ -149,10 +149,12 @@ class Context:
filename_encoding = sys.getdefaultencoding()
name = source_filename.decode(filename_encoding)
s = PyrexScanner(f, name, source_encoding = f.encoding,
type_names = type_names, context = self)
try:
s = PyrexScanner(f, name, source_encoding = f.encoding,
type_names = type_names, context = self)
tree = Parsing.p_module(s, pxd, full_module_name)
except UnicodeDecodeError, msg:
error((name, 0, 0), "Decoding error, set coding=<encoding-name> at top of source (%s)" % msg)
finally:
f.close()
if Errors.num_errors > 0:
......
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