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
Boxiang Sun
cython
Commits
1befcd38
Commit
1befcd38
authored
Aug 02, 2017
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improve error message when trying to take address of Python variable/expression (see #1768)
parent
c95ca9f2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
1 deletion
+33
-1
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+4
-1
tests/errors/e_addressof.pyx
tests/errors/e_addressof.pyx
+29
-0
No files found.
Cython/Compiler/ExprNodes.py
View file @
1befcd38
...
...
@@ -9990,7 +9990,10 @@ class AmpersandNode(CUnopNode):
self
.
error
(
"Taking address of non-lvalue (type %s)"
%
argtype
)
return
self
if
argtype
.
is_pyobject
:
self
.
error
(
"Cannot take address of Python variable"
)
self
.
error
(
"Cannot take address of Python %s"
%
(
"variable '%s'"
%
self
.
operand
.
name
if
self
.
operand
.
is_name
else
"object attribute '%s'"
%
self
.
operand
.
attribute
if
self
.
operand
.
is_attribute
else
"object"
))
return
self
if
not
argtype
.
is_cpp_class
or
not
self
.
type
:
self
.
type
=
PyrexTypes
.
c_ptr_type
(
argtype
)
...
...
tests/errors/e_addressof.pyx
0 → 100644
View file @
1befcd38
# mode: error
cdef
class
Ext
:
cdef
int
a
cdef
object
o
def
f
(
int
a
):
cdef
Ext
e
=
Ext
()
x
=
&
a
# ok
cdef
object
o
=
&
a
# pointer != object
po1
=
&
o
# pointer to Python variable
po2
=
&
o
.
xyz
# pointer to Python expression
po3
=
&
e
.
o
# pointer to Python object
po4
=
&
e
.
a
# ok (C attribute)
po5
=
&
(
o
+
1
)
# pointer to non-lvalue Python expression
po6
=
&
(
a
+
1
)
# pointer to non-lvalue C expression
_ERRORS
=
"""
11:20: Cannot convert 'int *' to Python object
13:10: Cannot take address of Python variable 'o'
14:10: Cannot take address of Python object attribute 'xyz'
15:10: Cannot take address of Python object attribute 'o'
18:10: Taking address of non-lvalue (type Python object)
19:10: Taking address of non-lvalue (type long)
"""
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