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
00a5ade4
Commit
00a5ade4
authored
Apr 22, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify ExprNode.as_none_safe_node() with a sensible default exception type
parent
867ac47a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
10 deletions
+7
-10
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+1
-2
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+6
-8
No files found.
Cython/Compiler/ExprNodes.py
View file @
00a5ade4
...
...
@@ -643,7 +643,7 @@ class ExprNode(Node):
def
as_cython_attribute
(
self
):
return
None
def
as_none_safe_node
(
self
,
error
,
message
):
def
as_none_safe_node
(
self
,
message
,
error
=
"PyExc_TypeError"
):
# Wraps the node in a NoneCheckNode if it is not known to be
# not-None (e.g. because it is a Python literal).
if
self
.
may_be_none
():
...
...
@@ -5815,7 +5815,6 @@ class PrimaryCmpNode(ExprNode, CmpNode):
env
.
use_utility_code
(
char_in_bytes_utility_code
)
if
not
isinstance
(
self
.
operand2
,
(
UnicodeNode
,
BytesNode
)):
self
.
operand2
=
self
.
operand2
.
as_none_safe_node
(
"PyExc_TypeError"
,
"argument of type 'NoneType' is not iterable"
)
else
:
common_type
=
py_object_type
...
...
Cython/Compiler/Optimize.py
View file @
00a5ade4
...
...
@@ -173,7 +173,7 @@ class IterationTransform(Visitor.VisitorTransform):
return
node
unpack_temp_node
=
UtilNodes
.
LetRefNode
(
slice_node
.
as_none_safe_node
(
"
PyExc_TypeError"
,
"
'NoneType' is not iterable"
))
slice_node
.
as_none_safe_node
(
"'NoneType' is not iterable"
))
slice_base_node
=
ExprNodes
.
PythonCapiCallNode
(
slice_node
.
pos
,
unpack_func
,
unpack_func_type
,
...
...
@@ -1312,7 +1312,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
return
node
arg
=
pos_args
[
0
]
if
arg
.
type
is
Builtin
.
dict_type
:
arg
=
arg
.
as_none_safe_node
(
"
PyExc_TypeError"
,
"
'NoneType' is not iterable"
)
arg
=
arg
.
as_none_safe_node
(
"'NoneType' is not iterable"
)
return
ExprNodes
.
PythonCapiCallNode
(
node
.
pos
,
"PyDict_Copy"
,
self
.
PyDict_Copy_func_type
,
args
=
[
arg
],
...
...
@@ -1336,7 +1336,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
if
not
isinstance
(
list_arg
,
(
ExprNodes
.
ComprehensionNode
,
ExprNodes
.
ListNode
)):
pos_args
[
0
]
=
list_arg
.
as_none_safe_node
(
"
PyExc_TypeError"
,
"
'NoneType' object is not iterable"
)
"'NoneType' object is not iterable"
)
return
ExprNodes
.
PythonCapiCallNode
(
node
.
pos
,
"PyList_AsTuple"
,
self
.
PyList_AsTuple_func_type
,
...
...
@@ -1497,7 +1497,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
return
node
if
not
arg
.
is_literal
:
arg
=
arg
.
as_none_safe_node
(
"
PyExc_TypeError"
,
"
object of type 'NoneType' has no len()"
)
"object of type 'NoneType' has no len()"
)
new_node
=
ExprNodes
.
PythonCapiCallNode
(
node
.
pos
,
cfunc_name
,
self
.
PyObject_Size_func_type
,
args
=
[
arg
],
...
...
@@ -1561,7 +1561,6 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
if
not
type_arg
.
type_entry
:
# arbitrary variable, needs a None check for safety
type_arg
=
type_arg
.
as_none_safe_node
(
"PyExc_TypeError"
,
"object.__new__(X): X is not a type object (NoneType)"
)
return
ExprNodes
.
PythonCapiCallNode
(
...
...
@@ -2123,13 +2122,12 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
self_arg
=
args
[
0
]
if
is_unbound_method
:
self_arg
=
self_arg
.
as_none_safe_node
(
"PyExc_TypeError"
,
"descriptor '%s' requires a '%s' object but received a 'NoneType'"
%
(
attr_name
,
node
.
function
.
obj
.
name
))
else
:
self_arg
=
self_arg
.
as_none_safe_node
(
"
PyExc_AttributeError"
,
"'NoneType' object has no attribute '%s'"
%
attr_name
)
"
'NoneType' object has no attribute '%s'"
%
attr_name
,
error
=
"PyExc_AttributeError"
)
args
[
0
]
=
self_arg
return
ExprNodes
.
PythonCapiCallNode
(
node
.
pos
,
name
,
func_type
,
...
...
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