# min()
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
@cython.test_fail_if_path_exists("//SimpleCallNode")
def min3(a,b,c):
"""
"""
return min(a,b,c)
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
@cython.test_fail_if_path_exists("//SimpleCallNode")
def min3_typed(int a, int b, int c):
"""
"""
return min(a,b,c)
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
@cython.test_fail_if_path_exists("//SimpleCallNode")
def literal_min3():
"""
# max()
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
@cython.test_fail_if_path_exists("//SimpleCallNode")
def max3(a,b,c):
"""
"""
return max(a,b,c)
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
@cython.test_fail_if_path_exists("//SimpleCallNode")
def max3_typed(int a, int b, int c):
"""
"""
return max(a,b,c)
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
@cython.test_fail_if_path_exists("//SimpleCallNode")
def literal_max3():
"""