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
226ad9cf
Commit
226ad9cf
authored
Dec 03, 2009
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more explicit method to check if a type can coerce to a Python object
parent
d5419f9e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+2
-2
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+11
-2
No files found.
Cython/Compiler/ExprNodes.py
View file @
226ad9cf
...
...
@@ -3013,7 +3013,7 @@ class AttributeNode(ExprNode):
self
.
type
=
py_object_type
self
.
is_py_attr
=
1
if
not
obj_type
.
is_pyobject
and
not
obj_type
.
is_error
:
if
obj_type
.
c
reate_to_py_utility_code
(
env
):
if
obj_type
.
c
an_coerce_to_pyobject
(
env
):
self
.
obj
=
self
.
obj
.
coerce_to_pyobject
(
env
)
else
:
error
(
self
.
pos
,
...
...
@@ -4242,7 +4242,7 @@ class TypecastNode(ExprNode):
if
from_py
and
not
to_py
and
self
.
operand
.
is_ephemeral
()
and
not
self
.
type
.
is_numeric
:
error
(
self
.
pos
,
"Casting temporary Python object to non-numeric non-Python type"
)
if
to_py
and
not
from_py
:
if
self
.
operand
.
type
.
c
reate_to_py_utility_code
(
env
):
if
self
.
operand
.
type
.
c
an_coerce_to_pyobject
(
env
):
self
.
result_ctype
=
py_object_type
self
.
operand
=
self
.
operand
.
coerce_to_pyobject
(
env
)
else
:
...
...
Cython/Compiler/PyrexTypes.py
View file @
226ad9cf
...
...
@@ -11,6 +11,9 @@ class BaseType(object):
#
# Base class for all Pyrex types including pseudo-types.
def
can_coerce_to_pyobject
(
self
,
env
):
return
False
def
cast_code
(
self
,
expr_code
):
return
"((%s)%s)"
%
(
self
.
declaration_code
(
""
),
expr_code
)
...
...
@@ -349,6 +352,9 @@ class PyObjectType(PyrexType):
def
__repr__
(
self
):
return
"<PyObjectType>"
def
can_coerce_to_pyobject
(
self
,
env
):
return
True
def
assignable_from
(
self
,
src_type
):
# except for pointers, conversion will be attempted
return
not
src_type
.
is_ptr
or
src_type
.
is_string
...
...
@@ -556,6 +562,9 @@ class CType(PyrexType):
def
create_from_py_utility_code
(
self
,
env
):
return
self
.
from_py_function
is
not
None
def
can_coerce_to_pyobject
(
self
,
env
):
return
self
.
create_to_py_utility_code
(
env
)
def
error_condition
(
self
,
result_code
):
conds
=
[]
if
self
.
is_string
:
...
...
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