Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
1a019507
Commit
1a019507
authored
Apr 30, 2008
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
robustness against unicode errors on encoding detection
parent
8c32ed8f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
21 deletions
+24
-21
Cython/Compiler/Main.py
Cython/Compiler/Main.py
+17
-17
Cython/Utils.py
Cython/Utils.py
+7
-4
No files found.
Cython/Compiler/Main.py
View file @
1a019507
...
...
@@ -139,8 +139,10 @@ class Context:
def
parse
(
self
,
source_filename
,
type_names
,
pxd
,
full_module_name
):
# Parse the given source file and return a parse tree.
try
:
f
=
Utils
.
open_source_file
(
source_filename
,
"rU"
)
try
:
if
isinstance
(
source_filename
,
unicode
):
name
=
source_filename
else
:
...
...
@@ -149,15 +151,13 @@ class Context:
filename_encoding
=
sys
.
getdefaultencoding
()
name
=
source_filename
.
decode
(
filename_encoding
)
try
:
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, missing or incorrect coding=<encoding-name> at top of source (%s)"
%
msg
)
finally
:
f
.
close
()
except
UnicodeDecodeError
,
msg
:
error
((
source_filename
,
0
,
0
),
"Decoding error, missing or incorrect coding=<encoding-name> at top of source (%s)"
%
msg
)
if
Errors
.
num_errors
>
0
:
raise
CompileError
return
tree
...
...
Cython/Utils.py
View file @
1a019507
...
...
@@ -41,12 +41,15 @@ def detect_file_encoding(source_filename):
# PEPs 263 and 3120
f
=
codecs
.
open
(
source_filename
,
"rU"
,
encoding
=
"UTF-8"
)
try
:
for
line_no
,
line
in
enumerate
(
f
):
encoding
=
_match_file_encoding
(
line
)
chars
=
[]
for
i
in
range
(
2
):
c
=
f
.
read
(
1
)
while
c
and
c
!=
'
\
n
'
:
chars
.
append
(
c
)
c
=
f
.
read
(
1
)
encoding
=
_match_file_encoding
(
u''
.
join
(
chars
))
if
encoding
:
return
encoding
.
group
(
1
)
if
line_no
==
1
:
break
finally
:
f
.
close
()
return
"UTF-8"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment