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
1b8267da
Commit
1b8267da
authored
Apr 17, 2011
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix #688: optimised builtin functions/methods return 0 instead of None
parent
374fd040
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
109 additions
and
8 deletions
+109
-8
Cython/Compiler/Builtin.py
Cython/Compiler/Builtin.py
+6
-6
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+11
-2
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+3
-0
tests/run/builtin_methods_return_values.pyx
tests/run/builtin_methods_return_values.pyx
+89
-0
No files found.
Cython/Compiler/Builtin.py
View file @
1b8267da
...
...
@@ -478,9 +478,9 @@ builtin_types_table = [
(
"tuple"
,
"PyTuple_Type"
,
[]),
(
"list"
,
"PyList_Type"
,
[
BuiltinMethod
(
"insert"
,
"TzO"
,
"
i
"
,
"PyList_Insert"
),
BuiltinMethod
(
"reverse"
,
"T"
,
"
i
"
,
"PyList_Reverse"
),
BuiltinMethod
(
"append"
,
"TO"
,
"
i
"
,
"PyList_Append"
),
(
"list"
,
"PyList_Type"
,
[
BuiltinMethod
(
"insert"
,
"TzO"
,
"
r
"
,
"PyList_Insert"
),
BuiltinMethod
(
"reverse"
,
"T"
,
"
r
"
,
"PyList_Reverse"
),
BuiltinMethod
(
"append"
,
"TO"
,
"
r
"
,
"PyList_Append"
),
]),
(
"dict"
,
"PyDict_Type"
,
[
BuiltinMethod
(
"items"
,
"T"
,
"O"
,
"PyDict_Items"
),
# FIXME: Py3 mode?
...
...
@@ -494,9 +494,9 @@ builtin_types_table = [
]),
# ("file", "PyFile_Type", []), # not in Py3
(
"set"
,
"PySet_Type"
,
[
BuiltinMethod
(
"clear"
,
"T"
,
"
i
"
,
"PySet_Clear"
),
BuiltinMethod
(
"discard"
,
"TO"
,
"
i
"
,
"PySet_Discard"
),
BuiltinMethod
(
"add"
,
"TO"
,
"
i
"
,
"PySet_Add"
),
(
"set"
,
"PySet_Type"
,
[
BuiltinMethod
(
"clear"
,
"T"
,
"
r
"
,
"PySet_Clear"
),
BuiltinMethod
(
"discard"
,
"TO"
,
"
r
"
,
"PySet_Discard"
),
BuiltinMethod
(
"add"
,
"TO"
,
"
r
"
,
"PySet_Add"
),
BuiltinMethod
(
"pop"
,
"T"
,
"O"
,
"PySet_Pop"
)]),
(
"frozenset"
,
"PyFrozenSet_Type"
,
[]),
]
...
...
Cython/Compiler/Optimize.py
View file @
1b8267da
...
...
@@ -1604,6 +1604,15 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
return
node
.
operand
return
node
def
visit_ExprStatNode
(
self
,
node
):
"""
Drop useless coercions.
"""
self
.
visitchildren
(
node
)
if
isinstance
(
node
.
expr
,
ExprNodes
.
CoerceToPyTypeNode
):
node
.
expr
=
node
.
expr
.
arg
return
node
def
visit_CoerceToBooleanNode
(
self
,
node
):
"""Drop redundant conversion nodes after tree changes.
"""
...
...
@@ -2146,7 +2155,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
_handle_simple_method_list_pop
=
_handle_simple_method_object_pop
single_param_func_type
=
PyrexTypes
.
CFuncType
(
PyrexTypes
.
c_
int
_type
,
[
PyrexTypes
.
c_
returncode
_type
,
[
PyrexTypes
.
CFuncTypeArg
(
"obj"
,
PyrexTypes
.
py_object_type
,
None
),
],
exception_value
=
"-1"
)
...
...
@@ -2158,7 +2167,7 @@ class OptimizeBuiltinCalls(Visitor.EnvTransform):
return
node
return
self
.
_substitute_method_call
(
node
,
"PyList_Sort"
,
self
.
single_param_func_type
,
'sort'
,
is_unbound_method
,
args
)
'sort'
,
is_unbound_method
,
args
)
.
coerce_to
(
node
.
type
,
self
.
current_env
)
Pyx_PyDict_GetItem_func_type
=
PyrexTypes
.
CFuncType
(
PyrexTypes
.
py_object_type
,
[
...
...
Cython/Compiler/PyrexTypes.py
View file @
1b8267da
...
...
@@ -913,6 +913,8 @@ class CAnonEnumType(CIntType):
class
CReturnCodeType
(
CIntType
):
to_py_function
=
"__Pyx_Owned_Py_None"
is_returncode
=
1
...
...
@@ -2783,6 +2785,7 @@ type_conversion_predeclarations = """
#define __Pyx_PyBytes_FromUString(s) PyBytes_FromString((char*)s)
#define __Pyx_PyBytes_AsUString(s) ((unsigned char*) PyBytes_AsString(s))
#define __Pyx_Owned_Py_None(b) (Py_INCREF(Py_None), Py_None)
#define __Pyx_PyBool_FromLong(b) ((b) ? (Py_INCREF(Py_True), Py_True) : (Py_INCREF(Py_False), Py_False))
static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*);
static CYTHON_INLINE PyObject* __Pyx_PyNumber_Int(PyObject* x);
...
...
tests/run/builtin_methods_return_values.pyx
0 → 100644
View file @
1b8267da
# mode: run
# tag: list, set, builtins
# ticket: 688
_set
=
set
class
TestObj
(
object
):
pass
def
_setattr
(
obj
):
"""
>>> t = TestObj()
>>> _setattr(t) is None
True
>>> t.test is None
True
"""
setattr
(
obj
,
'test'
,
None
)
return
setattr
(
obj
,
'test'
,
None
)
def
_delattr
(
obj
):
"""
>>> t = TestObj()
>>> t.test1 = t.test2 = True
>>> _delattr(t) is None
True
>>> hasattr(t, 'test1')
False
>>> hasattr(t, 'test2')
False
"""
delattr
(
obj
,
'test1'
)
return
delattr
(
obj
,
'test2'
)
def
list_sort
(
list
l
):
"""
>>> list_sort([1,2,3]) is None
True
"""
l
.
sort
()
return
l
.
sort
()
def
list_reverse
(
list
l
):
"""
>>> list_reverse([1,2,3]) is None
True
"""
l
.
reverse
()
return
l
.
reverse
()
def
list_insert
(
list
l
):
"""
>>> list_insert([1,2,3]) is None
True
"""
l
.
insert
(
1
,
2
)
return
l
.
insert
(
1
,
2
)
def
list_append
(
list
l
):
"""
>>> list_append([1,2,3]) is None
True
"""
l
.
append
(
1
)
return
l
.
append
(
2
)
def
set_clear
(
set
s
):
"""
>>> set_clear(_set([1,2,3])) is None
True
"""
s
.
clear
()
return
s
.
clear
()
def
set_discard
(
set
s
):
"""
>>> set_discard(_set([1,2,3])) is None
True
"""
s
.
discard
(
1
)
return
s
.
discard
(
2
)
def
set_add
(
set
s
):
"""
>>> set_add(_set([1,2,3])) is None
True
"""
s
.
add
(
1
)
return
s
.
add
(
2
)
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