From 75ae247deb973c3c43289163cbace41077ac16c8 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 8 Oct 2010 10:18:22 +0200 Subject: [PATCH] fix 'nogil' flag on PythonCapiCallNode after the last exception handling change --- Cython/Compiler/ExprNodes.py | 1 + 1 file changed, 1 insertion(+) 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) -- 2.26.2