From: Stefan Behnel Date: Fri, 8 Oct 2010 08:18:22 +0000 (+0200) Subject: fix 'nogil' flag on PythonCapiCallNode after the last exception handling change X-Git-Tag: 0.14.alpha0~294 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=75ae247deb973c3c43289163cbace41077ac16c8;p=cython.git fix 'nogil' flag on PythonCapiCallNode after the last exception handling change --- diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index d12d6cfc..2eabed1b 100755 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -2701,6 +2701,7 @@ class SimpleCallNode(CallNode): arg_tuple = None wrapper_call = False has_optional_args = False + nogil = False def compile_time_value(self, denv): function = self.function.compile_time_value(denv)