fix 'nogil' flag on PythonCapiCallNode after the last exception handling change
authorStefan Behnel <scoder@users.berlios.de>
Fri, 8 Oct 2010 08:18:22 +0000 (10:18 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 8 Oct 2010 08:18:22 +0000 (10:18 +0200)
Cython/Compiler/ExprNodes.py

index d12d6cfc775624e35a8dc6f7ad37a41dedbcdbc1..2eabed1b75c2ce09bc84a2f6d391fdb6cea2d25a 100755 (executable)
@@ -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)