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
e9cbbf22
Commit
e9cbbf22
authored
Aug 16, 2008
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better fix for include/comments, squelch internal compiler exceptions if previous errors.
parent
eb1a531e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
5 deletions
+8
-5
Cython/Compiler/Main.py
Cython/Compiler/Main.py
+5
-1
Cython/Compiler/Parsing.py
Cython/Compiler/Parsing.py
+1
-2
Cython/Compiler/Scanning.py
Cython/Compiler/Scanning.py
+2
-2
No files found.
Cython/Compiler/Main.py
View file @
e9cbbf22
...
...
@@ -19,7 +19,7 @@ import Errors
import
Parsing
import
Version
from
Scanning
import
PyrexScanner
,
FileSourceDescriptor
from
Errors
import
PyrexError
,
CompileError
,
error
from
Errors
import
PyrexError
,
CompileError
,
InternalError
,
error
from
Symtab
import
BuiltinScope
,
ModuleScope
from
Cython
import
Utils
from
Cython.Utils
import
open_new_file
,
replace_suffix
...
...
@@ -170,6 +170,10 @@ class Context:
except
CompileError
,
err
:
# err is set
Errors
.
report_error
(
err
)
except
InternalError
,
err
:
# Only raise if there was not an earlier error
if
Errors
.
num_errors
==
0
:
raise
return
(
err
,
data
)
def
find_module
(
self
,
module_name
,
...
...
Cython/Compiler/Parsing.py
View file @
e9cbbf22
...
...
@@ -1271,8 +1271,7 @@ def p_include_statement(s, ctx):
s
.
included_files
.
append
(
include_file_name
)
f
=
Utils
.
open_source_file
(
include_file_path
,
mode
=
"rU"
)
source_desc
=
FileSourceDescriptor
(
include_file_path
)
s2
=
PyrexScanner
(
f
,
source_desc
,
s
,
source_encoding
=
f
.
encoding
)
s2
.
parse_comments
=
s
.
parse_comments
s2
=
PyrexScanner
(
f
,
source_desc
,
s
,
source_encoding
=
f
.
encoding
,
parse_comments
=
s
.
parse_comments
)
try
:
tree
=
p_statement_list
(
s2
,
ctx
)
finally
:
...
...
Cython/Compiler/Scanning.py
View file @
e9cbbf22
...
...
@@ -290,7 +290,7 @@ class PyrexScanner(Scanner):
resword_dict
=
build_resword_dict
()
def
__init__
(
self
,
file
,
filename
,
parent_scanner
=
None
,
scope
=
None
,
context
=
None
,
source_encoding
=
None
):
scope
=
None
,
context
=
None
,
source_encoding
=
None
,
parse_comments
=
True
):
Scanner
.
__init__
(
self
,
get_lexicon
(),
file
,
filename
)
if
parent_scanner
:
self
.
context
=
parent_scanner
.
context
...
...
@@ -306,7 +306,7 @@ class PyrexScanner(Scanner):
self
.
compile_time_env
=
initial_compile_time_env
()
self
.
compile_time_eval
=
1
self
.
compile_time_expr
=
0
self
.
parse_comments
=
True
self
.
parse_comments
=
parse_comments
self
.
source_encoding
=
source_encoding
self
.
trace
=
trace_scanner
self
.
indentation_stack
=
[
0
]
...
...
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