projects
/
platform
/
upstream
/
python-cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dcbccc2
)
remove useless return in __init__()
author
Stefan Behnel
<stefan_ml@behnel.de>
Sun, 17 Nov 2013 08:57:32 +0000
(09:57 +0100)
committer
Stefan Behnel
<stefan_ml@behnel.de>
Sun, 17 Nov 2013 08:57:32 +0000
(09:57 +0100)
Cython/Compiler/TypeInference.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/TypeInference.py
b/Cython/Compiler/TypeInference.py
index
bce699d
..
8e75bd7
100644
(file)
--- a/
Cython/Compiler/TypeInference.py
+++ b/
Cython/Compiler/TypeInference.py
@@
-28,7
+28,7
@@
class MarkParallelAssignments(EnvTransform):
def __init__(self, context):
# Track the parallel block scopes (with parallel, for i in prange())
self.parallel_block_stack = []
-
return
super(MarkParallelAssignments, self).__init__(context)
+ super(MarkParallelAssignments, self).__init__(context)
def mark_assignment(self, lhs, rhs, inplace_op=None):
if isinstance(lhs, (ExprNodes.NameNode, Nodes.PyArgDeclNode)):