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
b4956d52
Commit
b4956d52
authored
Jan 19, 2014
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use correct entry for overflow checks when inferring name node types
parent
1a4c6b5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
Cython/Compiler/TypeInference.py
Cython/Compiler/TypeInference.py
+3
-1
No files found.
Cython/Compiler/TypeInference.py
View file @
b4956d52
...
@@ -383,6 +383,7 @@ class SimpleAssignmentTypeInferer(object):
...
@@ -383,6 +383,7 @@ class SimpleAssignmentTypeInferer(object):
if
not
types
:
if
not
types
:
node_type
=
py_object_type
node_type
=
py_object_type
else
:
else
:
entry
=
node
.
entry
node_type
=
spanning_type
(
node_type
=
spanning_type
(
types
,
entry
.
might_overflow
,
entry
.
pos
)
types
,
entry
.
might_overflow
,
entry
.
pos
)
node
.
inferred_type
=
node_type
node
.
inferred_type
=
node_type
...
@@ -392,6 +393,7 @@ class SimpleAssignmentTypeInferer(object):
...
@@ -392,6 +393,7 @@ class SimpleAssignmentTypeInferer(object):
if
assmt
.
inferred_type
is
not
None
]
if
assmt
.
inferred_type
is
not
None
]
if
not
types
:
if
not
types
:
return
return
entry
=
node
.
entry
return
spanning_type
(
types
,
entry
.
might_overflow
,
entry
.
pos
)
return
spanning_type
(
types
,
entry
.
might_overflow
,
entry
.
pos
)
def
resolve_assignments
(
assignments
):
def
resolve_assignments
(
assignments
):
...
@@ -407,7 +409,7 @@ class SimpleAssignmentTypeInferer(object):
...
@@ -407,7 +409,7 @@ class SimpleAssignmentTypeInferer(object):
done
=
False
done
=
False
assmts_resolved
.
add
(
assmt
)
assmts_resolved
.
add
(
assmt
)
resolved
.
add
(
assmt
)
resolved
.
add
(
assmt
)
assignments
-=
resolved
assignments
.
difference_update
(
resolved
)
return
resolved
return
resolved
def
partial_infer
(
assmt
):
def
partial_infer
(
assmt
):
...
...
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