summaryrefslogtreecommitdiff
path: root/tests/run/sequential_parallel.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/sequential_parallel.pyx')
-rw-r--r--tests/run/sequential_parallel.pyx14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/run/sequential_parallel.pyx b/tests/run/sequential_parallel.pyx
index 3d8e1efff..cd4bbd6bc 100644
--- a/tests/run/sequential_parallel.pyx
+++ b/tests/run/sequential_parallel.pyx
@@ -315,7 +315,7 @@ def test_nan_init():
c1 = 16
-cdef void nogil_print(char *s) with gil:
+cdef void nogil_print(char *s) noexcept with gil:
print s.decode('ascii')
def test_else_clause():
@@ -406,7 +406,7 @@ def test_nested_break_continue():
print i
-cdef int parallel_return() nogil:
+cdef int parallel_return() noexcept nogil:
cdef int i
for i in prange(10):
@@ -640,7 +640,7 @@ def test_parallel_with_gil_continue_unnested():
print sum
-cdef int inner_parallel_section() nogil:
+cdef int inner_parallel_section() noexcept nogil:
cdef int j, sum = 0
for j in prange(10):
sum += j
@@ -656,10 +656,10 @@ def outer_parallel_section():
sum += inner_parallel_section()
return sum
-cdef int nogil_cdef_except_clause() nogil except -1:
+cdef int nogil_cdef_except_clause() except -1 nogil:
return 1
-cdef void nogil_cdef_except_star() nogil except *:
+cdef void nogil_cdef_except_star() except * nogil:
pass
def test_nogil_cdef_except_clause():
@@ -683,7 +683,7 @@ def test_num_threads_compile():
for i in prange(10):
pass
-cdef int chunksize() nogil:
+cdef int chunksize() noexcept nogil:
return 3
def test_chunksize():
@@ -784,7 +784,7 @@ cdef extern from *:
"""
void address_of_temp(...) nogil
void address_of_temp2(...) nogil
- double get_value() nogil except -1.0 # will generate a temp for exception checking
+ double get_value() except -1.0 nogil # will generate a temp for exception checking
def test_inner_private():
"""