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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
de4aa5fe
Commit
de4aa5fe
authored
Mar 11, 2018
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always show original position on "redeclared" errors.
parent
da1a7d09
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+10
-1
tests/errors/e_nonlocal_T490.pyx
tests/errors/e_nonlocal_T490.pyx
+2
-0
No files found.
Cython/Compiler/Symtab.py
View file @
de4aa5fe
...
...
@@ -218,9 +218,12 @@ class Entry(object):
def
__repr__
(
self
):
return
"%s(<%x>, name=%s, type=%s)"
%
(
type
(
self
).
__name__
,
id
(
self
),
self
.
name
,
self
.
type
)
def
already_declared_here
(
self
):
error
(
self
.
pos
,
"Previous declaration is here"
)
def
redeclared
(
self
,
pos
):
error
(
pos
,
"'%s' does not match previous declaration"
%
self
.
name
)
error
(
self
.
pos
,
"Previous declaration is here"
)
self
.
already_declared_here
(
)
def
all_alternatives
(
self
):
return
[
self
]
+
self
.
overloaded_alternatives
...
...
@@ -456,6 +459,7 @@ class Scope(object):
warning
(
pos
,
"'%s' redeclared "
%
name
,
1
if
self
.
in_cinclude
else
0
)
elif
visibility
!=
'ignore'
:
error
(
pos
,
"'%s' redeclared "
%
name
)
entries
[
name
].
already_declared_here
()
entry
=
Entry
(
name
,
cname
,
type
,
pos
=
pos
)
entry
.
in_cinclude
=
self
.
in_cinclude
entry
.
create_wrapper
=
create_wrapper
...
...
@@ -587,6 +591,7 @@ class Scope(object):
else
:
if
not
(
entry
.
is_type
and
entry
.
type
.
is_cpp_class
):
error
(
pos
,
"'%s' redeclared "
%
name
)
entry
.
already_declared_here
()
return
None
elif
scope
and
entry
.
type
.
scope
:
warning
(
pos
,
"'%s' already defined (ignoring second definition)"
%
name
,
0
)
...
...
@@ -597,11 +602,13 @@ class Scope(object):
if
base_classes
:
if
entry
.
type
.
base_classes
and
entry
.
type
.
base_classes
!=
base_classes
:
error
(
pos
,
"Base type does not match previous declaration"
)
entry
.
already_declared_here
()
else
:
entry
.
type
.
base_classes
=
base_classes
if
templates
or
entry
.
type
.
templates
:
if
templates
!=
entry
.
type
.
templates
:
error
(
pos
,
"Template parameters do not match previous declaration"
)
entry
.
already_declared_here
()
def
declare_inherited_attributes
(
entry
,
base_classes
):
for
base_class
in
base_classes
:
...
...
@@ -1733,6 +1740,7 @@ class LocalScope(Scope):
orig_entry
=
self
.
lookup_here
(
name
)
if
orig_entry
and
orig_entry
.
scope
is
self
and
not
orig_entry
.
from_closure
:
error
(
pos
,
"'%s' redeclared as nonlocal"
%
name
)
orig_entry
.
already_declared_here
()
else
:
entry
=
self
.
lookup
(
name
)
if
entry
is
None
or
not
entry
.
from_closure
:
...
...
@@ -1966,6 +1974,7 @@ class PyClassScope(ClassScope):
orig_entry
=
self
.
lookup_here
(
name
)
if
orig_entry
and
orig_entry
.
scope
is
self
and
not
orig_entry
.
from_closure
:
error
(
pos
,
"'%s' redeclared as nonlocal"
%
name
)
orig_entry
.
already_declared_here
()
else
:
entry
=
self
.
lookup
(
name
)
if
entry
is
None
:
...
...
tests/errors/e_nonlocal_T490.pyx
View file @
de4aa5fe
...
...
@@ -30,7 +30,9 @@ def redef_in_class_scope():
_ERRORS
=
u"""
4:4: no binding for nonlocal 'no_such_name' found
10:8: Previous declaration is here
11:8: 'x' redeclared as nonlocal
16:4: no binding for nonlocal 'global_name' found
27:8: Previous declaration is here
28:8: 'x' redeclared as nonlocal
"""
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