summaryrefslogtreecommitdiff
path: root/Cython/Compiler/ParseTreeTransforms.py
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2016-07-31 20:04:24 +0200
committerStefan Behnel <stefan_ml@behnel.de>2016-07-31 20:10:21 +0200
commitffa9234c32a07e6578d59be86d9349f10cc46d1a (patch)
tree5295f27b9ef314192236c1d71f5cd6d220ae025c /Cython/Compiler/ParseTreeTransforms.py
parent608641ca5600f6d829bd50eba7bb1d180d7fa896 (diff)
downloadcython-ffa9234c32a07e6578d59be86d9349f10cc46d1a.tar.gz
reformat some code
Diffstat (limited to 'Cython/Compiler/ParseTreeTransforms.py')
-rw-r--r--Cython/Compiler/ParseTreeTransforms.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Cython/Compiler/ParseTreeTransforms.py b/Cython/Compiler/ParseTreeTransforms.py
index d0fcc59a0..71c228df0 100644
--- a/Cython/Compiler/ParseTreeTransforms.py
+++ b/Cython/Compiler/ParseTreeTransforms.py
@@ -1593,8 +1593,7 @@ if VALUE is not None:
node.stats.insert(0, node.py_func)
node.py_func = self.visit(node.py_func)
node.update_fused_defnode_entry(env)
- pycfunc = ExprNodes.PyCFunctionNode.from_defnode(node.py_func,
- True)
+ pycfunc = ExprNodes.PyCFunctionNode.from_defnode(node.py_func, binding=True)
pycfunc = ExprNodes.ProxyNode(pycfunc.coerce_to_temp(env))
node.resulting_fused_function = pycfunc
# Create assignment node for our def function