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
e9f3800b
Commit
e9f3800b
authored
Oct 09, 2009
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
2f682f9b
1f2b10af
Changes
19
Show whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
681 additions
and
76 deletions
+681
-76
Cython/Compiler/AnalysedTreeTransforms.py
Cython/Compiler/AnalysedTreeTransforms.py
+2
-2
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+270
-52
Cython/Compiler/Main.py
Cython/Compiler/Main.py
+2
-0
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+10
-0
Cython/Compiler/Options.py
Cython/Compiler/Options.py
+1
-0
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/ParseTreeTransforms.py
+8
-1
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+29
-1
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+22
-3
Cython/Compiler/TypeInference.py
Cython/Compiler/TypeInference.py
+179
-0
Cython/Shadow.py
Cython/Shadow.py
+3
-0
Demos/embed/main.c
Demos/embed/main.c
+0
-9
Demos/primes.pyx
Demos/primes.pyx
+1
-1
runtests.py
runtests.py
+5
-2
tests/compile/cassign.pyx
tests/compile/cassign.pyx
+1
-0
tests/run/ctypedef_int_types_T333.pyx
tests/run/ctypedef_int_types_T333.pyx
+4
-4
tests/run/isinstance.pyx
tests/run/isinstance.pyx
+1
-1
tests/run/pycmp.pyx
tests/run/pycmp.pyx
+1
-0
tests/run/type_inference.pyx
tests/run/type_inference.pyx
+80
-0
tests/run/typeof.pyx
tests/run/typeof.pyx
+62
-0
No files found.
Cython/Compiler/AnalysedTreeTransforms.py
View file @
e9f3800b
from
Cython.Compiler.Visitor
import
VisitorTransform
,
ScopeTrackingTransform
,
TreeVisitor
from
Nodes
import
StatListNode
,
SingleAssignmentNode
,
CFuncDefNode
from
ExprNodes
import
(
DictNode
,
DictItemNode
,
NameNode
,
UnicodeNode
,
NoneNode
,
ExprNode
,
AttributeNode
,
ModuleRefNode
,
DocstringRefNode
)
from
ExprNodes
import
DictNode
,
DictItemNode
,
NameNode
,
UnicodeNode
,
NoneNode
,
\
ExprNode
,
AttributeNode
,
ModuleRefNode
,
DocstringRefNode
from
PyrexTypes
import
py_object_type
from
Builtin
import
dict_type
from
StringEncoding
import
EncodedString
...
...
Cython/Compiler/ExprNodes.py
View file @
e9f3800b
...
...
@@ -12,8 +12,8 @@ import Naming
import
Nodes
from
Nodes
import
Node
import
PyrexTypes
from
PyrexTypes
import
py_object_type
,
c_long_type
,
typecast
,
error_type
from
Builtin
import
list_type
,
tuple_type
,
set_type
,
dict_type
,
unicode_type
,
bytes_type
from
PyrexTypes
import
py_object_type
,
c_long_type
,
typecast
,
error_type
,
unspecified_type
from
Builtin
import
list_type
,
tuple_type
,
set_type
,
dict_type
,
unicode_type
,
bytes_type
,
type_type
import
Builtin
import
Symtab
import
Options
...
...
@@ -307,6 +307,27 @@ class ExprNode(Node):
temp_bool
=
bool
.
coerce_to_temp
(
env
)
return
temp_bool
# --------------- Type Inference -----------------
def
type_dependencies
(
self
,
env
):
# Returns the list of entries whose types must be determined
# before the type of self can be infered.
if
hasattr
(
self
,
'type'
)
and
self
.
type
is
not
None
:
return
()
return
sum
([
node
.
type_dependencies
(
env
)
for
node
in
self
.
subexpr_nodes
()],
())
def
infer_type
(
self
,
env
):
# Attempt to deduce the type of self.
# Differs from analyse_types as it avoids unnecessary
# analysis of subexpressions, but can assume everything
# in self.type_dependencies() has been resolved.
if
hasattr
(
self
,
'type'
)
and
self
.
type
is
not
None
:
return
self
.
type
elif
hasattr
(
self
,
'entry'
)
and
self
.
entry
is
not
None
:
return
self
.
entry
.
type
else
:
self
.
not_implemented
(
"infer_type"
)
# --------------- Type Analysis ------------------
def
analyse_as_module
(
self
,
env
):
...
...
@@ -781,7 +802,6 @@ class StringNode(ConstNode):
# Arrange for a Python version of the string to be pre-allocated
# when coercing to a Python type.
if
dst_type
.
is_pyobject
and
not
self
.
type
.
is_pyobject
:
warn_once
(
self
.
pos
,
"String literals will no longer be Py3 bytes in Cython 0.12."
,
1
)
node
=
self
.
as_py_string_node
(
env
)
else
:
node
=
self
...
...
@@ -811,8 +831,9 @@ class StringNode(ConstNode):
def
calculate_result_code
(
self
):
return
self
.
result_code
class
UnicodeNode
(
PyConstNode
):
# entry Symtab.Entry
type
=
unicode_type
def
coerce_to
(
self
,
dst_type
,
env
):
...
...
@@ -858,6 +879,8 @@ class LongNode(AtomicExprNode):
#
# value string
type
=
py_object_type
def
calculate_constant_result
(
self
):
self
.
constant_result
=
long
(
self
.
value
)
...
...
@@ -865,7 +888,6 @@ class LongNode(AtomicExprNode):
return
long
(
self
.
value
)
def
analyse_types
(
self
,
env
):
self
.
type
=
py_object_type
self
.
is_temp
=
1
gil_message
=
"Constructing Python long int"
...
...
@@ -954,6 +976,27 @@ class NameNode(AtomicExprNode):
create_analysed_rvalue
=
staticmethod
(
create_analysed_rvalue
)
def
type_dependencies
(
self
,
env
):
if
self
.
entry
is
None
:
self
.
entry
=
env
.
lookup
(
self
.
name
)
if
self
.
entry
is
not
None
and
self
.
entry
.
type
.
is_unspecified
:
return
(
self
.
entry
,)
else
:
return
()
def
infer_type
(
self
,
env
):
if
self
.
entry
is
None
:
self
.
entry
=
env
.
lookup
(
self
.
name
)
if
self
.
entry
is
None
:
return
py_object_type
elif
(
self
.
entry
.
type
.
is_extension_type
or
self
.
entry
.
type
.
is_builtin_type
)
and
\
self
.
name
==
self
.
entry
.
type
.
name
:
# Unfortunately the type attribute of type objects
# is used for the pointer to the type the represent.
return
type_type
else
:
return
self
.
entry
.
type
def
compile_time_value
(
self
,
denv
):
try
:
return
denv
.
lookup
(
self
.
name
)
...
...
@@ -1023,7 +1066,11 @@ class NameNode(AtomicExprNode):
if
not
self
.
entry
:
self
.
entry
=
env
.
lookup_here
(
self
.
name
)
if
not
self
.
entry
:
self
.
entry
=
env
.
declare_var
(
self
.
name
,
py_object_type
,
self
.
pos
)
if
env
.
directives
[
'infer_types'
]:
type
=
unspecified_type
else
:
type
=
py_object_type
self
.
entry
=
env
.
declare_var
(
self
.
name
,
type
,
self
.
pos
)
env
.
control_flow
.
set_state
(
self
.
pos
,
(
self
.
name
,
'initalized'
),
True
)
env
.
control_flow
.
set_state
(
self
.
pos
,
(
self
.
name
,
'source'
),
'assignment'
)
if
self
.
entry
.
is_declared_generic
:
...
...
@@ -1294,12 +1341,13 @@ class BackquoteNode(ExprNode):
#
# arg ExprNode
type
=
py_object_type
subexprs
=
[
'arg'
]
def
analyse_types
(
self
,
env
):
self
.
arg
.
analyse_types
(
env
)
self
.
arg
=
self
.
arg
.
coerce_to_pyobject
(
env
)
self
.
type
=
py_object_type
self
.
is_temp
=
1
gil_message
=
"Backquote expression"
...
...
@@ -1325,6 +1373,8 @@ class ImportNode(ExprNode):
# module_name IdentifierStringNode dotted name of module
# name_list ListNode or None list of names to be imported
type
=
py_object_type
subexprs
=
[
'module_name'
,
'name_list'
]
def
analyse_types
(
self
,
env
):
...
...
@@ -1333,7 +1383,6 @@ class ImportNode(ExprNode):
if
self
.
name_list
:
self
.
name_list
.
analyse_types
(
env
)
self
.
name_list
.
coerce_to_pyobject
(
env
)
self
.
type
=
py_object_type
self
.
is_temp
=
1
env
.
use_utility_code
(
import_utility_code
)
...
...
@@ -1363,12 +1412,13 @@ class IteratorNode(ExprNode):
#
# sequence ExprNode
type
=
py_object_type
subexprs
=
[
'sequence'
]
def
analyse_types
(
self
,
env
):
self
.
sequence
.
analyse_types
(
env
)
self
.
sequence
=
self
.
sequence
.
coerce_to_pyobject
(
env
)
self
.
type
=
py_object_type
self
.
is_temp
=
1
gil_message
=
"Iterating over Python object"
...
...
@@ -1420,10 +1470,11 @@ class NextNode(AtomicExprNode):
#
# iterator ExprNode
type
=
py_object_type
def
__init__
(
self
,
iterator
,
env
):
self
.
pos
=
iterator
.
pos
self
.
iterator
=
iterator
self
.
type
=
py_object_type
self
.
is_temp
=
1
def
generate_result_code
(
self
,
code
):
...
...
@@ -1476,9 +1527,10 @@ class ExcValueNode(AtomicExprNode):
# of an ExceptClauseNode to fetch the current
# exception value.
type
=
py_object_type
def
__init__
(
self
,
pos
,
env
):
ExprNode
.
__init__
(
self
,
pos
)
self
.
type
=
py_object_type
def
set_var
(
self
,
var
):
self
.
var
=
var
...
...
@@ -1594,6 +1646,19 @@ class IndexNode(ExprNode):
return
PyrexTypes
.
CArrayType
(
base_type
,
int
(
self
.
index
.
compile_time_value
(
env
)))
return
None
def
type_dependencies
(
self
,
env
):
return
self
.
base
.
type_dependencies
(
env
)
def
infer_type
(
self
,
env
):
if
isinstance
(
self
.
base
,
StringNode
):
return
py_object_type
base_type
=
self
.
base
.
infer_type
(
env
)
if
base_type
.
is_ptr
or
base_type
.
is_array
:
return
base_type
.
base_type
else
:
# TODO: Handle buffers (hopefully without too much redundancy).
return
py_object_type
def
analyse_types
(
self
,
env
):
self
.
analyse_base_and_index_types
(
env
,
getting
=
1
)
...
...
@@ -2103,6 +2168,9 @@ class SliceNode(ExprNode):
# stop ExprNode
# step ExprNode
type
=
py_object_type
is_temp
=
1
def
calculate_constant_result
(
self
):
self
.
constant_result
=
self
.
base
.
constant_result
[
self
.
start
.
constant_result
:
\
...
...
@@ -2133,8 +2201,6 @@ class SliceNode(ExprNode):
self
.
start
=
self
.
start
.
coerce_to_pyobject
(
env
)
self
.
stop
=
self
.
stop
.
coerce_to_pyobject
(
env
)
self
.
step
=
self
.
step
.
coerce_to_pyobject
(
env
)
self
.
type
=
py_object_type
self
.
is_temp
=
1
gil_message
=
"Constructing Python slice object"
...
...
@@ -2150,6 +2216,7 @@ class SliceNode(ExprNode):
class
CallNode
(
ExprNode
):
def
analyse_as_type_constructor
(
self
,
env
):
type
=
self
.
function
.
analyse_as_type
(
env
)
if
type
and
type
.
is_struct_or_union
:
...
...
@@ -2202,6 +2269,20 @@ class SimpleCallNode(CallNode):
except
Exception
,
e
:
self
.
compile_time_value_error
(
e
)
def
type_dependencies
(
self
,
env
):
# TODO: Update when Danilo's C++ code merged in to handle the
# the case of function overloading.
return
self
.
function
.
type_dependencies
(
env
)
def
infer_type
(
self
,
env
):
func_type
=
self
.
function
.
infer_type
(
env
)
if
func_type
.
is_ptr
:
func_type
=
func_type
.
base_type
if
func_type
.
is_cfunction
:
return
func_type
.
return_type
else
:
return
py_object_type
def
analyse_as_type
(
self
,
env
):
attr
=
self
.
function
.
as_cython_attribute
()
if
attr
==
'pointer'
:
...
...
@@ -2462,6 +2543,8 @@ class GeneralCallNode(CallNode):
# keyword_args ExprNode or None Dict of keyword arguments
# starstar_arg ExprNode or None Dict of extra keyword args
type
=
py_object_type
subexprs
=
[
'function'
,
'positional_args'
,
'keyword_args'
,
'starstar_arg'
]
nogil_check
=
Node
.
gil_error
...
...
@@ -2640,6 +2723,18 @@ class AttributeNode(ExprNode):
except
Exception
,
e
:
self
.
compile_time_value_error
(
e
)
def
type_dependencies
(
self
,
env
):
return
self
.
obj
.
type_dependencies
(
env
)
def
infer_type
(
self
,
env
):
if
self
.
analyse_as_cimported_attribute
(
env
,
0
):
return
self
.
entry
.
type
elif
self
.
analyse_as_unbound_cmethod
(
env
):
return
self
.
entry
.
type
else
:
self
.
analyse_attribute
(
env
,
obj_type
=
self
.
obj
.
infer_type
(
env
))
return
self
.
type
def
analyse_target_declaration
(
self
,
env
):
pass
...
...
@@ -2742,13 +2837,17 @@ class AttributeNode(ExprNode):
self
.
is_temp
=
1
self
.
result_ctype
=
py_object_type
def
analyse_attribute
(
self
,
env
):
def
analyse_attribute
(
self
,
env
,
obj_type
=
None
):
# Look up attribute and set self.type and self.member.
self
.
is_py_attr
=
0
self
.
member
=
self
.
attribute
if
obj_type
is
None
:
if
self
.
obj
.
type
.
is_string
:
self
.
obj
=
self
.
obj
.
coerce_to_pyobject
(
env
)
obj_type
=
self
.
obj
.
type
else
:
if
obj_type
.
is_string
:
obj_type
=
py_object_type
if
obj_type
.
is_ptr
or
obj_type
.
is_array
:
obj_type
=
obj_type
.
base_type
self
.
op
=
"->"
...
...
@@ -2787,9 +2886,10 @@ class AttributeNode(ExprNode):
# type, or it is an extension type and the attribute is either not
# declared or is declared as a Python method. Treat it as a Python
# attribute reference.
self
.
analyse_as_python_attribute
(
env
)
self
.
analyse_as_python_attribute
(
env
,
obj_type
)
def
analyse_as_python_attribute
(
self
,
env
):
def
analyse_as_python_attribute
(
self
,
env
,
obj_type
=
None
):
if
obj_type
is
None
:
obj_type
=
self
.
obj
.
type
self
.
member
=
self
.
attribute
if
obj_type
.
is_pyobject
:
...
...
@@ -2943,6 +3043,7 @@ class StarredTargetNode(ExprNode):
subexprs
=
[
'target'
]
is_starred
=
1
type
=
py_object_type
is_temp
=
1
def
__init__
(
self
,
pos
,
target
):
self
.
pos
=
pos
...
...
@@ -3204,6 +3305,8 @@ class SequenceNode(ExprNode):
class
TupleNode
(
SequenceNode
):
# Tuple constructor.
type
=
tuple_type
gil_message
=
"Constructing Python tuple"
def
analyse_types
(
self
,
env
,
skip_children
=
False
):
...
...
@@ -3212,7 +3315,6 @@ class TupleNode(SequenceNode):
self
.
is_literal
=
1
else
:
SequenceNode
.
analyse_types
(
self
,
env
,
skip_children
)
self
.
type
=
tuple_type
def
calculate_result_code
(
self
):
if
len
(
self
.
args
)
>
0
:
...
...
@@ -3272,6 +3374,13 @@ class ListNode(SequenceNode):
gil_message
=
"Constructing Python list"
def
type_dependencies
(
self
,
env
):
return
()
def
infer_type
(
self
,
env
):
# TOOD: Infer non-object list arrays.
return
list_type
def
analyse_expressions
(
self
,
env
):
SequenceNode
.
analyse_expressions
(
self
,
env
)
self
.
coerce_to_pyobject
(
env
)
...
...
@@ -3378,10 +3487,16 @@ class ComprehensionNode(ExprNode):
subexprs
=
[
"target"
]
child_attrs
=
[
"loop"
,
"append"
]
def
infer_type
(
self
,
env
):
return
self
.
target
.
infer_type
(
env
)
def
analyse_types
(
self
,
env
):
self
.
target
.
analyse_expressions
(
env
)
self
.
type
=
self
.
target
.
type
self
.
append
.
target
=
self
# this is a CloneNode used in the PyList_Append in the inner loop
# We are analysing declarations to late.
self
.
loop
.
target
.
analyse_target_declaration
(
env
)
env
.
infer_types
()
self
.
loop
.
analyse_declarations
(
env
)
self
.
loop
.
analyse_expressions
(
env
)
...
...
@@ -3451,6 +3566,8 @@ class DictComprehensionAppendNode(ComprehensionAppendNode):
class
SetNode
(
ExprNode
):
# Set constructor.
type
=
set_type
subexprs
=
[
'args'
]
gil_message
=
"Constructing Python set"
...
...
@@ -3518,6 +3635,13 @@ class DictNode(ExprNode):
except
Exception
,
e
:
self
.
compile_time_value_error
(
e
)
def
type_dependencies
(
self
,
env
):
return
()
def
infer_type
(
self
,
env
):
# TOOD: Infer struct constructors.
return
dict_type
def
analyse_types
(
self
,
env
):
hold_errors
()
for
item
in
self
.
key_value_pairs
:
...
...
@@ -3681,12 +3805,13 @@ class UnboundMethodNode(ExprNode):
#
# function ExprNode Function object
type
=
py_object_type
is_temp
=
1
subexprs
=
[
'function'
]
def
analyse_types
(
self
,
env
):
self
.
function
.
analyse_types
(
env
)
self
.
type
=
py_object_type
self
.
is_temp
=
1
gil_message
=
"Constructing an unbound method"
...
...
@@ -3707,9 +3832,11 @@ class PyCFunctionNode(AtomicExprNode):
#
# pymethdef_cname string PyMethodDef structure
type
=
py_object_type
is_temp
=
1
def
analyse_types
(
self
,
env
):
self
.
type
=
py_object_type
self
.
is_temp
=
1
pass
gil_message
=
"Constructing Python function"
...
...
@@ -3765,6 +3892,9 @@ class UnopNode(ExprNode):
except
Exception
,
e
:
self
.
compile_time_value_error
(
e
)
def
infer_type
(
self
,
env
):
return
self
.
operand
.
infer_type
(
env
)
def
analyse_types
(
self
,
env
):
self
.
operand
.
analyse_types
(
env
)
if
self
.
is_py_operation
():
...
...
@@ -3813,6 +3943,10 @@ class NotNode(ExprNode):
#
# operand ExprNode
type
=
PyrexTypes
.
c_bint_type
subexprs
=
[
'operand'
]
def
calculate_constant_result
(
self
):
self
.
constant_result
=
not
self
.
operand
.
constant_result
...
...
@@ -3823,12 +3957,12 @@ class NotNode(ExprNode):
except
Exception
,
e
:
self
.
compile_time_value_error
(
e
)
subexprs
=
[
'operand'
]
def
infer_type
(
self
,
env
):
return
PyrexTypes
.
c_bint_type
def
analyse_types
(
self
,
env
):
self
.
operand
.
analyse_types
(
env
)
self
.
operand
=
self
.
operand
.
coerce_to_boolean
(
env
)
self
.
type
=
PyrexTypes
.
c_bint_type
def
calculate_result_code
(
self
):
return
"(!%s)"
%
self
.
operand
.
result
()
...
...
@@ -3897,6 +4031,9 @@ class AmpersandNode(ExprNode):
subexprs
=
[
'operand'
]
def
infer_type
(
self
,
env
):
return
PyrexTypes
.
c_ptr_type
(
self
.
operand
.
infer_type
(
env
))
def
analyse_types
(
self
,
env
):
self
.
operand
.
analyse_types
(
env
)
argtype
=
self
.
operand
.
type
...
...
@@ -3954,6 +4091,15 @@ class TypecastNode(ExprNode):
subexprs
=
[
'operand'
]
base_type
=
declarator
=
type
=
None
def
type_dependencies
(
self
,
env
):
return
()
def
infer_type
(
self
,
env
):
if
self
.
type
is
None
:
base_type
=
self
.
base_type
.
analyse
(
env
)
_
,
self
.
type
=
self
.
declarator
.
analyse
(
base_type
,
env
)
return
self
.
type
def
analyse_types
(
self
,
env
):
if
self
.
type
is
None
:
base_type
=
self
.
base_type
.
analyse
(
env
)
...
...
@@ -4103,6 +4249,29 @@ class SizeofVarNode(SizeofNode):
def
generate_result_code
(
self
,
code
):
pass
class
TypeofNode
(
ExprNode
):
# Compile-time type of an expression, as a string.
#
# operand ExprNode
# literal StringNode # internal
literal
=
None
type
=
py_object_type
subexprs
=
[
'operand'
,
'literal'
]
def
analyse_types
(
self
,
env
):
self
.
operand
.
analyse_types
(
env
)
from
StringEncoding
import
EncodedString
self
.
literal
=
StringNode
(
self
.
pos
,
value
=
EncodedString
(
str
(
self
.
operand
.
type
)))
self
.
literal
.
analyse_types
(
env
)
self
.
literal
=
self
.
literal
.
coerce_to_pyobject
(
env
)
def
generate_evaluation_code
(
self
,
code
):
self
.
literal
.
generate_evaluation_code
(
code
)
def
calculate_result_code
(
self
):
return
self
.
literal
.
calculate_result_code
()
#-------------------------------------------------------------------
#
...
...
@@ -4176,6 +4345,10 @@ class BinopNode(ExprNode):
except
Exception
,
e
:
self
.
compile_time_value_error
(
e
)
def
infer_type
(
self
,
env
):
return
self
.
result_type
(
self
.
operand1
.
infer_type
(
env
),
self
.
operand2
.
infer_type
(
env
))
def
analyse_types
(
self
,
env
):
self
.
operand1
.
analyse_types
(
env
)
self
.
operand2
.
analyse_types
(
env
)
...
...
@@ -4189,8 +4362,16 @@ class BinopNode(ExprNode):
self
.
analyse_c_operation
(
env
)
def
is_py_operation
(
self
):
return
(
self
.
operand1
.
type
.
is_pyobject
or
self
.
operand2
.
type
.
is_pyobject
)
return
self
.
is_py_operation_types
(
self
.
operand1
.
type
,
self
.
operand2
.
type
)
def
is_py_operation_types
(
self
,
type1
,
type2
):
return
type1
.
is_pyobject
or
type2
.
is_pyobject
def
result_type
(
self
,
type1
,
type2
):
if
self
.
is_py_operation_types
(
type1
,
type2
):
return
py_object_type
else
:
return
self
.
compute_c_result_type
(
type1
,
type2
)
def
nogil_check
(
self
,
env
):
if
self
.
is_py_operation
():
...
...
@@ -4314,12 +4495,11 @@ class IntBinopNode(NumBinopNode):
class
AddNode
(
NumBinopNode
):
# '+' operator.
def
is_py_operation
(
self
):
if
self
.
operand1
.
type
.
is_string
\
and
self
.
operand2
.
type
.
is_string
:
def
is_py_operation_types
(
self
,
type1
,
type2
):
if
type1
.
is_string
and
type2
.
is_string
:
return
1
else
:
return
NumBinopNode
.
is_py_operation
(
self
)
return
NumBinopNode
.
is_py_operation
_types
(
self
,
type1
,
type2
)
def
compute_c_result_type
(
self
,
type1
,
type2
):
#print "AddNode.compute_c_result_type:", type1, self.operator, type2 ###
...
...
@@ -4348,14 +4528,12 @@ class SubNode(NumBinopNode):
class
MulNode
(
NumBinopNode
):
# '*' operator.
def
is_py_operation
(
self
):
type1
=
self
.
operand1
.
type
type2
=
self
.
operand2
.
type
def
is_py_operation_types
(
self
,
type1
,
type2
):
if
(
type1
.
is_string
and
type2
.
is_int
)
\
or
(
type2
.
is_string
and
type1
.
is_int
):
return
1
else
:
return
NumBinopNode
.
is_py_operation
(
self
)
return
NumBinopNode
.
is_py_operation
_types
(
self
,
type1
,
type2
)
class
DivNode
(
NumBinopNode
):
...
...
@@ -4492,10 +4670,10 @@ class DivNode(NumBinopNode):
class
ModNode
(
DivNode
):
# '%' operator.
def
is_py_operation
(
self
):
return
(
self
.
operand1
.
type
.
is_string
or
self
.
operand2
.
type
.
is_string
or
NumBinopNode
.
is_py_operation
(
self
))
def
is_py_operation
_types
(
self
,
type1
,
type2
):
return
(
type1
.
is_string
or
type2
.
is_string
or
NumBinopNode
.
is_py_operation
_types
(
self
,
type1
,
type2
))
def
zero_division_message
(
self
):
if
self
.
type
.
is_int
:
...
...
@@ -4572,6 +4750,13 @@ class BoolBinopNode(ExprNode):
subexprs
=
[
'operand1'
,
'operand2'
]
def
infer_type
(
self
,
env
):
if
(
self
.
operand1
.
infer_type
(
env
).
is_pyobject
or
self
.
operand2
.
infer_type
(
env
).
is_pyobject
):
return
py_object_type
else
:
return
PyrexTypes
.
c_bint_type
def
calculate_constant_result
(
self
):
if
self
.
operator
==
'and'
:
self
.
constant_result
=
\
...
...
@@ -4686,6 +4871,13 @@ class CondExprNode(ExprNode):
subexprs
=
[
'test'
,
'true_val'
,
'false_val'
]
def
type_dependencies
(
self
,
env
):
return
self
.
true_val
.
type_dependencies
(
env
)
+
self
.
false_val
.
type_dependencies
(
env
)
def
infer_type
(
self
,
env
):
return
self
.
compute_result_type
(
self
.
true_val
.
infer_type
(
env
),
self
.
false_val
.
infer_type
(
env
))
def
calculate_constant_result
(
self
):
if
self
.
test
.
constant_result
:
self
.
constant_result
=
self
.
true_val
.
constant_result
...
...
@@ -4770,6 +4962,10 @@ class CmpNode(object):
# Mixin class containing code common to PrimaryCmpNodes
# and CascadedCmpNodes.
def
infer_types
(
self
,
env
):
# TODO: Actually implement this (after merging with -unstable).
return
py_object_type
def
calculate_cascaded_constant_result
(
self
,
operand1_result
):
func
=
compile_time_binary_operators
[
self
.
operator
]
operand2_result
=
self
.
operand2
.
constant_result
...
...
@@ -4932,6 +5128,13 @@ class PrimaryCmpNode(ExprNode, CmpNode):
cascade
=
None
def
infer_type
(
self
,
env
):
# TODO: Actually implement this (after merging with -unstable).
return
py_object_type
def
type_dependencies
(
self
,
env
):
return
()
def
calculate_constant_result
(
self
):
self
.
constant_result
=
self
.
calculate_cascaded_constant_result
(
self
.
operand1
.
constant_result
)
...
...
@@ -5066,6 +5269,13 @@ class CascadedCmpNode(Node, CmpNode):
cascade
=
None
constant_result
=
constant_value_not_set
# FIXME: where to calculate this?
def
infer_type
(
self
,
env
):
# TODO: Actually implement this (after merging with -unstable).
return
py_object_type
def
type_dependencies
(
self
,
env
):
return
()
def
analyse_types
(
self
,
env
,
operand1
):
self
.
operand2
.
analyse_types
(
env
)
if
self
.
cascade
:
...
...
@@ -5288,10 +5498,11 @@ class CoerceToPyTypeNode(CoercionNode):
# This node is used to convert a C data type
# to a Python object.
type
=
py_object_type
is_temp
=
1
def
__init__
(
self
,
arg
,
env
):
CoercionNode
.
__init__
(
self
,
arg
)
self
.
type
=
py_object_type
self
.
is_temp
=
1
if
not
arg
.
type
.
create_to_py_utility_code
(
env
):
error
(
arg
.
pos
,
"Cannot convert '%s' to Python object"
%
arg
.
type
)
...
...
@@ -5359,9 +5570,10 @@ class CoerceToBooleanNode(CoercionNode):
# This node is used when a result needs to be used
# in a boolean context.
type
=
PyrexTypes
.
c_bint_type
def
__init__
(
self
,
arg
,
env
):
CoercionNode
.
__init__
(
self
,
arg
)
self
.
type
=
PyrexTypes
.
c_bint_type
if
arg
.
type
.
is_pyobject
:
self
.
is_temp
=
1
...
...
@@ -5466,6 +5678,12 @@ class CloneNode(CoercionNode):
def
result
(
self
):
return
self
.
arg
.
result
()
def
type_dependencies
(
self
,
env
):
return
self
.
arg
.
type_dependencies
(
env
)
def
infer_type
(
self
,
env
):
return
self
.
arg
.
infer_type
(
env
)
def
analyse_types
(
self
,
env
):
self
.
type
=
self
.
arg
.
type
self
.
result_ctype
=
self
.
arg
.
result_ctype
...
...
Cython/Compiler/Main.py
View file @
e9f3800b
...
...
@@ -87,6 +87,7 @@ class Context(object):
from
ParseTreeTransforms
import
AnalyseDeclarationsTransform
,
AnalyseExpressionsTransform
from
ParseTreeTransforms
import
CreateClosureClasses
,
MarkClosureVisitor
,
DecoratorTransform
from
ParseTreeTransforms
import
InterpretCompilerDirectives
,
TransformBuiltinMethods
from
TypeInference
import
MarkAssignments
from
ParseTreeTransforms
import
AlignFunctionDefinitions
,
GilCheck
from
AnalysedTreeTransforms
import
AutoTestDictTransform
from
AutoDocTransforms
import
EmbedSignature
...
...
@@ -129,6 +130,7 @@ class Context(object):
AnalyseDeclarationsTransform
(
self
),
AutoTestDictTransform
(
self
),
EmbedSignature
(
self
),
MarkAssignments
(
self
),
TransformBuiltinMethods
(
self
),
IntroduceBufferAuxiliaryVars
(
self
),
_check_c_declarations
,
...
...
Cython/Compiler/Nodes.py
View file @
e9f3800b
...
...
@@ -4,6 +4,12 @@
import
sys
,
os
,
time
,
copy
try
:
set
except
NameError
:
# Python 2.3
from
sets
import
Set
as
set
import
Code
import
Builtin
from
Errors
import
error
,
warning
,
InternalError
...
...
@@ -3198,6 +3204,10 @@ class InPlaceAssignmentNode(AssignmentNode):
self
.
rhs
.
annotate
(
code
)
self
.
dup
.
annotate
(
code
)
def
create_binop_node
(
self
):
import
ExprNodes
return
ExprNodes
.
binop_node
(
self
.
pos
,
self
.
operator
,
self
.
lhs
,
self
.
rhs
)
class
PrintStatNode
(
StatNode
):
# print statement
...
...
Cython/Compiler/Options.py
View file @
e9f3800b
...
...
@@ -68,6 +68,7 @@ option_defaults = {
'c99_complex'
:
False
,
# Don't use macro wrappers for complex arith, not sure what to name this...
'callspec'
:
""
,
'profile'
:
False
,
'infer_types'
:
False
,
'autotestdict'
:
True
,
# test support
...
...
Cython/Compiler/ParseTreeTransforms.py
View file @
e9f3800b
...
...
@@ -328,7 +328,7 @@ class InterpretCompilerDirectives(CythonTransform, SkipDeclarations):
duplication of functionality has to occur: We manually track cimports
and which names the "cython" module may have been imported to.
"""
special_methods
=
set
([
'declare'
,
'union'
,
'struct'
,
'typedef'
,
'sizeof'
,
'cast'
,
'address'
,
'pointer'
,
'compiled'
,
'NULL'
])
special_methods
=
set
([
'declare'
,
'union'
,
'struct'
,
'typedef'
,
'sizeof'
,
'
typeof'
,
'
cast'
,
'address'
,
'pointer'
,
'compiled'
,
'NULL'
])
def
__init__
(
self
,
context
,
compilation_option_overrides
):
super
(
InterpretCompilerDirectives
,
self
).
__init__
(
context
)
...
...
@@ -785,11 +785,13 @@ property NAME:
class
AnalyseExpressionsTransform
(
CythonTransform
):
def
visit_ModuleNode
(
self
,
node
):
node
.
scope
.
infer_types
()
node
.
body
.
analyse_expressions
(
node
.
scope
)
self
.
visitchildren
(
node
)
return
node
def
visit_FuncDefNode
(
self
,
node
):
node
.
local_scope
.
infer_types
()
node
.
body
.
analyse_expressions
(
node
.
local_scope
)
self
.
visitchildren
(
node
)
return
node
...
...
@@ -1007,6 +1009,11 @@ class TransformBuiltinMethods(EnvTransform):
node
=
SizeofTypeNode
(
node
.
function
.
pos
,
arg_type
=
type
)
else
:
node
=
SizeofVarNode
(
node
.
function
.
pos
,
operand
=
node
.
args
[
0
])
elif
function
==
'typeof'
:
if
len
(
node
.
args
)
!=
1
:
error
(
node
.
function
.
pos
,
u"sizeof takes exactly one argument"
%
function
)
else
:
node
=
TypeofNode
(
node
.
function
.
pos
,
operand
=
node
.
args
[
0
])
elif
function
==
'address'
:
if
len
(
node
.
args
)
!=
1
:
error
(
node
.
function
.
pos
,
u"sizeof takes exactly one argument"
%
function
)
...
...
Cython/Compiler/PyrexTypes.py
View file @
e9f3800b
...
...
@@ -77,6 +77,7 @@ class PyrexType(BaseType):
#
is_pyobject
=
0
is_unspecified
=
0
is_extension_type
=
0
is_builtin_type
=
0
is_numeric
=
0
...
...
@@ -849,6 +850,14 @@ class CComplexType(CNumericType):
def
__hash__
(
self
):
return
~
hash
(
self
.
real_type
)
def
declaration_code
(
self
,
entity_code
,
for_display
=
0
,
dll_linkage
=
None
,
pyrex
=
0
):
if
for_display
:
base
=
public_decl
(
self
.
real_type
.
sign_and_name
()
+
" complex"
,
dll_linkage
)
else
:
base
=
public_decl
(
self
.
sign_and_name
(),
dll_linkage
)
return
self
.
base_declaration_code
(
base
,
entity_code
)
def
sign_and_name
(
self
):
return
Naming
.
type_prefix
+
self
.
real_type
.
specalization_name
()
+
"_complex"
...
...
@@ -1592,6 +1601,8 @@ class CUCharPtrType(CStringType, CPtrType):
class
UnspecifiedType
(
PyrexType
):
# Used as a placeholder until the type can be determined.
is_unspecified
=
1
def
declaration_code
(
self
,
entity_code
,
for_display
=
0
,
dll_linkage
=
None
,
pyrex
=
0
):
return
"<unspecified>"
...
...
@@ -1788,6 +1799,23 @@ def widest_numeric_type(type1, type2):
return
sign_and_rank_to_type
[
min
(
type1
.
signed
,
type2
.
signed
),
max
(
type1
.
rank
,
type2
.
rank
)]
return
widest_type
def
spanning_type
(
type1
,
type2
):
# Return a type assignable from both type1 and type2.
if
type1
is
py_object_type
or
type2
is
py_object_type
:
return
py_object_type
elif
type1
==
type2
:
return
type1
elif
type1
.
is_numeric
and
type2
.
is_numeric
:
return
widest_numeric_type
(
type1
,
type2
)
elif
type1
.
is_pyobject
^
type2
.
is_pyobject
:
return
py_object_type
elif
type1
.
assignable_from
(
type2
):
return
type1
elif
type2
.
assignable_from
(
type1
):
return
type2
else
:
return
py_object_type
def
simple_c_type
(
signed
,
longness
,
name
):
# Find type descriptor for simple type given name and modifiers.
# Returns None if arguments don't make sense.
...
...
Cython/Compiler/Symtab.py
View file @
e9f3800b
...
...
@@ -8,7 +8,7 @@ from Errors import warning, error, InternalError
from
StringEncoding
import
EncodedString
import
Options
,
Naming
import
PyrexTypes
from
PyrexTypes
import
py_object_type
from
PyrexTypes
import
py_object_type
,
unspecified_type
import
TypeSlots
from
TypeSlots
import
\
pyfunction_signature
,
pymethod_signature
,
\
...
...
@@ -117,6 +117,7 @@ class Entry(object):
# buffer_aux BufferAux or None Extra information needed for buffer variables
# inline_func_in_pxd boolean Hacky special case for inline function in pxd file.
# Ideally this should not be necesarry.
# assignments [ExprNode] List of expressions that get assigned to this entry.
inline_func_in_pxd = False
borrowed = 0
...
...
@@ -171,6 +172,10 @@ class Entry(object):
self.type = type
self.pos = pos
self.init = init
self.assignments = []
def __repr__(self):
return "
Entry
(
name
=%
s
,
type
=%
s
)
" % (self.name, self.type)
def redeclared(self, pos):
error(pos, "'%s'
does
not
match
previous
declaration
" % self.name)
...
...
@@ -543,6 +548,10 @@ class Scope(object):
return 1
return 0
def infer_types(self):
from TypeInference import get_type_inferer
get_type_inferer().infer_types(self)
class PreImportScope(Scope):
namespace_cname = Naming.preimport_cname
...
...
@@ -814,6 +823,8 @@ class ModuleScope(Scope):
if not visibility in ('private', 'public', 'extern'):
error(pos, "
Module
-
level
variable
cannot
be
declared
%
s
" % visibility)
if not is_cdef:
if type is unspecified_type:
type = py_object_type
if not (type.is_pyobject and not type.is_extension_type):
raise InternalError(
"
Non
-
cdef
global
variable
is
not
a
generic
Python
object
")
...
...
@@ -1044,6 +1055,10 @@ class ModuleScope(Scope):
var_entry.is_readonly = 1
entry.as_variable = var_entry
def infer_types(self):
from TypeInference import PyObjectTypeInferer
PyObjectTypeInferer().infer_types(self)
class LocalScope(Scope):
def __init__(self, name, outer_scope):
...
...
@@ -1074,7 +1089,7 @@ class LocalScope(Scope):
cname, visibility, is_cdef)
if type.is_pyobject and not Options.init_local_none:
entry.init = "0"
entry.init_to_none =
type.is_pyobject
and Options.init_local_none
entry.init_to_none =
(type.is_pyobject or type.is_unspecified)
and Options.init_local_none
entry.is_local = 1
self.var_entries.append(entry)
return entry
...
...
@@ -1189,6 +1204,8 @@ class PyClassScope(ClassScope):
def
declare_var
(
self
,
name
,
type
,
pos
,
cname
=
None
,
visibility
=
'private'
,
is_cdef
=
0
):
if
type
is
unspecified_type
:
type
=
py_object_type
# Add an entry for a class attribute.
entry
=
Scope
.
declare_var
(
self
,
name
,
type
,
pos
,
cname
,
visibility
,
is_cdef
)
...
...
@@ -1275,6 +1292,8 @@ class CClassScope(ClassScope):
"Non-generic Python attribute cannot be exposed for writing from Python"
)
return
entry
else
:
if
type
is
unspecified_type
:
type
=
py_object_type
# Add an entry for a class attribute.
entry
=
Scope
.
declare_var
(
self
,
name
,
type
,
pos
,
cname
,
visibility
,
is_cdef
)
...
...
Cython/Compiler/TypeInference.py
0 → 100644
View file @
e9f3800b
import
ExprNodes
from
PyrexTypes
import
py_object_type
,
unspecified_type
,
spanning_type
from
Visitor
import
CythonTransform
try
:
set
except
NameError
:
# Python 2.3
from
sets
import
Set
as
set
class
TypedExprNode
(
ExprNodes
.
ExprNode
):
# Used for declaring assignments of a specified type whithout a known entry.
def
__init__
(
self
,
type
):
self
.
type
=
type
object_expr
=
TypedExprNode
(
py_object_type
)
class
MarkAssignments
(
CythonTransform
):
def
mark_assignment
(
self
,
lhs
,
rhs
):
if
isinstance
(
lhs
,
ExprNodes
.
NameNode
):
if
lhs
.
entry
is
None
:
# TODO: This shouldn't happen...
# It looks like comprehension loop targets are not declared soon enough.
return
lhs
.
entry
.
assignments
.
append
(
rhs
)
elif
isinstance
(
lhs
,
ExprNodes
.
SequenceNode
):
for
arg
in
lhs
.
args
:
self
.
mark_assignment
(
arg
,
object_expr
)
else
:
# Could use this info to infer cdef class attributes...
pass
def
visit_SingleAssignmentNode
(
self
,
node
):
self
.
mark_assignment
(
node
.
lhs
,
node
.
rhs
)
self
.
visitchildren
(
node
)
return
node
def
visit_CascadedAssignmentNode
(
self
,
node
):
for
lhs
in
node
.
lhs_list
:
self
.
mark_assignment
(
lhs
,
node
.
rhs
)
self
.
visitchildren
(
node
)
return
node
def
visit_InPlaceAssignmentNode
(
self
,
node
):
self
.
mark_assignment
(
node
.
lhs
,
node
.
create_binop_node
())
self
.
visitchildren
(
node
)
return
node
def
visit_ForInStatNode
(
self
,
node
):
# TODO: Remove redundancy with range optimization...
is_range
=
False
sequence
=
node
.
iterator
.
sequence
if
isinstance
(
sequence
,
ExprNodes
.
SimpleCallNode
):
function
=
sequence
.
function
if
sequence
.
self
is
None
and
\
isinstance
(
function
,
ExprNodes
.
NameNode
)
and
\
function
.
name
in
(
'range'
,
'xrange'
):
is_range
=
True
self
.
mark_assignment
(
node
.
target
,
sequence
.
args
[
0
])
if
len
(
sequence
.
args
)
>
1
:
self
.
mark_assignment
(
node
.
target
,
sequence
.
args
[
1
])
if
len
(
sequence
.
args
)
>
2
:
self
.
mark_assignment
(
node
.
target
,
ExprNodes
.
binop_node
(
node
.
pos
,
'+'
,
sequence
.
args
[
0
],
sequence
.
args
[
2
]))
if
not
is_range
:
self
.
mark_assignment
(
node
.
target
,
object_expr
)
self
.
visitchildren
(
node
)
return
node
def
visit_ForFromStatNode
(
self
,
node
):
self
.
mark_assignment
(
node
.
target
,
node
.
bound1
)
if
node
.
step
is
not
None
:
self
.
mark_assignment
(
node
.
target
,
ExprNodes
.
binop_node
(
node
.
pos
,
'+'
,
node
.
bound1
,
node
.
step
))
self
.
visitchildren
(
node
)
return
node
def
visit_ExceptClauseNode
(
self
,
node
):
if
node
.
target
is
not
None
:
self
.
mark_assignment
(
node
.
target
,
object_expr
)
self
.
visitchildren
(
node
)
return
node
def
visit_FromCImportStatNode
(
self
,
node
):
pass
# Can't be assigned to...
def
visit_FromImportStatNode
(
self
,
node
):
for
name
,
target
in
node
.
items
:
if
name
!=
"*"
:
self
.
mark_assignment
(
target
,
object_expr
)
self
.
visitchildren
(
node
)
return
node
class
PyObjectTypeInferer
:
"""
If it's not declared, it's a PyObject.
"""
def
infer_types
(
self
,
scope
):
"""
Given a dict of entries, map all unspecified types to a specified type.
"""
for
name
,
entry
in
scope
.
entries
.
items
():
if
entry
.
type
is
unspecified_type
:
entry
.
type
=
py_object_type
class
SimpleAssignmentTypeInferer
:
"""
Very basic type inference.
"""
# TODO: Implement a real type inference algorithm.
# (Something more powerful than just extending this one...)
def
infer_types
(
self
,
scope
):
dependancies_by_entry
=
{}
# entry -> dependancies
entries_by_dependancy
=
{}
# dependancy -> entries
ready_to_infer
=
[]
for
name
,
entry
in
scope
.
entries
.
items
():
if
entry
.
type
is
unspecified_type
:
all
=
set
()
for
expr
in
entry
.
assignments
:
all
.
update
(
expr
.
type_dependencies
(
scope
))
if
all
:
dependancies_by_entry
[
entry
]
=
all
for
dep
in
all
:
if
dep
not
in
entries_by_dependancy
:
entries_by_dependancy
[
dep
]
=
set
([
entry
])
else
:
entries_by_dependancy
[
dep
].
add
(
entry
)
else
:
ready_to_infer
.
append
(
entry
)
def
resolve_dependancy
(
dep
):
if
dep
in
entries_by_dependancy
:
for
entry
in
entries_by_dependancy
[
dep
]:
entry_deps
=
dependancies_by_entry
[
entry
]
entry_deps
.
remove
(
dep
)
if
not
entry_deps
and
entry
!=
dep
:
del
dependancies_by_entry
[
entry
]
ready_to_infer
.
append
(
entry
)
# Try to infer things in order...
while
True
:
while
ready_to_infer
:
entry
=
ready_to_infer
.
pop
()
types
=
[
expr
.
infer_type
(
scope
)
for
expr
in
entry
.
assignments
]
if
types
:
entry
.
type
=
reduce
(
spanning_type
,
types
)
else
:
# List comprehension?
# print "No assignments", entry.pos, entry
entry
.
type
=
py_object_type
resolve_dependancy
(
entry
)
# Deal with simple circular dependancies...
for
entry
,
deps
in
dependancies_by_entry
.
items
():
if
len
(
deps
)
==
1
and
deps
==
set
([
entry
]):
types
=
[
expr
.
infer_type
(
scope
)
for
expr
in
entry
.
assignments
if
expr
.
type_dependencies
(
scope
)
==
()]
if
types
:
entry
.
type
=
reduce
(
spanning_type
,
types
)
types
=
[
expr
.
infer_type
(
scope
)
for
expr
in
entry
.
assignments
]
entry
.
type
=
reduce
(
spanning_type
,
types
)
# might be wider...
resolve_dependancy
(
entry
)
del
dependancies_by_entry
[
entry
]
if
ready_to_infer
:
break
if
not
ready_to_infer
:
break
# We can't figure out the rest with this algorithm, let them be objects.
for
entry
in
dependancies_by_entry
:
entry
.
type
=
py_object_type
def
get_type_inferer
():
return
SimpleAssignmentTypeInferer
()
Cython/Shadow.py
View file @
e9f3800b
...
...
@@ -31,6 +31,9 @@ def cast(type, arg):
def
sizeof
(
arg
):
return
1
def
typeof
(
arg
):
return
type
(
arg
)
def
address
(
arg
):
return
pointer
(
type
(
arg
))([
arg
])
...
...
Demos/embed/main.c
deleted
100644 → 0
View file @
2f682f9b
#include "Python.h"
#include "embedded.h"
int
main
(
int
argc
,
char
*
argv
)
{
Py_Initialize
();
initembedded
();
spam
();
Py_Finalize
();
}
Demos/primes.pyx
View file @
e9f3800b
print
"starting"
def
primes
(
int
kmax
):
cdef
int
n
,
k
,
i
#
cdef int n, k, i
cdef
int
p
[
1000
]
result
=
[]
if
kmax
>
1000
:
...
...
runtests.py
View file @
e9f3800b
...
...
@@ -8,7 +8,10 @@ import shutil
import
unittest
import
doctest
import
operator
from
StringIO
import
StringIO
try
:
from
StringIO
import
StringIO
except
ImportError
:
from
io
import
StringIO
try
:
import
cPickle
as
pickle
...
...
@@ -394,7 +397,7 @@ class CythonRunTestCase(CythonCompileTestCase):
try
:
partial_result
=
PartialTestResult
(
result
)
doctest
.
DocTestSuite
(
module_name
).
run
(
partial_result
)
except
Exception
,
e
:
except
Exception
:
partial_result
.
addError
(
module_name
,
sys
.
exc_info
())
result_code
=
1
pickle
.
dump
(
partial_result
.
data
(),
output
)
...
...
tests/compile/cassign.pyx
View file @
e9f3800b
...
...
@@ -2,6 +2,7 @@ cdef void foo():
cdef
int
i1
,
i2
=
0
cdef
char
c1
=
0
,
c2
cdef
char
*
p1
,
*
p2
=
NULL
cdef
object
obj1
i1
=
i2
i1
=
c1
p1
=
p2
...
...
tests/run/ctypedef_int_types_T333.pyx
View file @
e9f3800b
...
...
@@ -576,15 +576,15 @@ def test_DefSInt(defs.SInt x):
"""
return
x
def
test_DefU
Int
(
defs
.
UInt
x
):
def
test_DefU
Char
(
defs
.
UChar
x
):
u"""
>>> test_DefU
Int
(-1) #doctest: +ELLIPSIS
>>> test_DefU
Char
(-1) #doctest: +ELLIPSIS
Traceback (most recent call last):
...
OverflowError: ...
>>> test_DefU
Int
(0)
>>> test_DefU
Char
(0)
0
>>> test_DefU
Int
(1)
>>> test_DefU
Char
(1)
1
"""
return
x
...
...
tests/run/isinstance.pyx
View file @
e9f3800b
...
...
@@ -35,7 +35,7 @@ def test_all():
assert
not
isinstance
(
u"foo"
,
int
)
# Non-optimized
foo
=
A
cdef
object
foo
=
A
assert
isinstance
(
A
(),
foo
)
assert
isinstance
(
0
,
(
int
,
long
))
assert
not
isinstance
(
u"xyz"
,
(
int
,
long
))
...
...
tests/run/pycmp.pyx
View file @
e9f3800b
...
...
@@ -5,6 +5,7 @@ __doc__ = u"""
def
f
():
cdef
int
bool
,
int1
,
int2
cdef
object
obj1
,
obj2
int1
=
0
int2
=
0
obj1
=
1
...
...
tests/run/type_inference.pyx
0 → 100644
View file @
e9f3800b
# cython: infer_types = True
__doc__
=
u"""
>>> simple()
>>> multiple_assignments()
>>> arithmatic()
>>> cascade()
>>> increment()
>>> loop()
"""
from
cython
cimport
typeof
def
simple
():
i
=
3
assert
typeof
(
i
)
==
"long"
x
=
1.41
assert
typeof
(
x
)
==
"double"
xptr
=
&
x
assert
typeof
(
xptr
)
==
"double *"
xptrptr
=
&
xptr
assert
typeof
(
xptrptr
)
==
"double **"
s
=
"abc"
assert
typeof
(
s
)
==
"char *"
u
=
u"xyz"
assert
typeof
(
u
)
==
"unicode object"
L
=
[
1
,
2
,
3
]
assert
typeof
(
L
)
==
"list object"
t
=
(
4
,
5
,
6
)
assert
typeof
(
t
)
==
"tuple object"
def
multiple_assignments
():
a
=
3
a
=
4
a
=
5
assert
typeof
(
a
)
==
"long"
b
=
a
b
=
3.1
b
=
3.14159
assert
typeof
(
b
)
==
"double"
c
=
a
c
=
b
c
=
[
1
,
2
,
3
]
assert
typeof
(
c
)
==
"Python object"
def
arithmatic
():
a
=
1
+
2
assert
typeof
(
a
)
==
"long"
b
=
1
+
1.5
assert
typeof
(
b
)
==
"double"
c
=
1
+
<
object
>
2
assert
typeof
(
c
)
==
"Python object"
d
=
"abc %s"
%
"x"
assert
typeof
(
d
)
==
"Python object"
def
cascade
():
a
=
1.0
b
=
a
+
2
c
=
b
+
3
d
=
c
+
4
assert
typeof
(
d
)
==
"double"
e
=
a
+
b
+
c
+
d
assert
typeof
(
e
)
==
"double"
def
increment
():
a
=
5
a
+=
1
assert
typeof
(
a
)
==
"long"
def
loop
():
for
a
in
range
(
10
):
pass
assert
typeof
(
a
)
==
"long"
b
=
1.0
for
b
in
range
(
5
):
pass
assert
typeof
(
b
)
==
"double"
for
c
from
0
<=
c
<
10
by
.
5
:
pass
assert
typeof
(
c
)
==
"double"
tests/run/typeof.pyx
0 → 100644
View file @
e9f3800b
__doc__
=
u"""
>>> simple()
int
long
long long
int *
int **
A
B
X
Python object
>>> expression()
double
double complex
int
unsigned int
"""
from
cython
cimport
typeof
cdef
class
A
:
pass
cdef
class
B
(
A
):
pass
cdef
struct
X
:
double
a
double
complex
b
def
simple
():
cdef
int
i
=
0
cdef
long
l
=
0
cdef
long
long
ll
=
0
cdef
int
*
iptr
=
&
i
cdef
int
**
iptrptr
=
&
iptr
cdef
A
a
=
None
cdef
B
b
=
None
cdef
X
x
=
X
(
a
=
1
,
b
=
2
)
print
typeof
(
i
)
print
typeof
(
l
)
print
typeof
(
ll
)
print
typeof
(
iptr
)
print
typeof
(
iptrptr
)
print
typeof
(
a
)
print
typeof
(
b
)
print
typeof
(
x
)
print
typeof
(
None
)
used
=
i
,
l
,
ll
,
<
long
>
iptr
,
<
long
>
iptrptr
,
a
,
b
,
x
def
expression
():
cdef
X
x
=
X
(
a
=
1
,
b
=
2
)
cdef
X
*
xptr
=
&
x
cdef
short
s
=
0
cdef
int
i
=
0
cdef
unsigned
int
ui
=
0
print
typeof
(
x
.
a
)
print
typeof
(
xptr
.
b
)
print
typeof
(
s
+
i
)
print
typeof
(
i
+
ui
)
used
=
x
,
<
long
>
xptr
,
s
,
i
,
ui
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