rust/cargo-c: update to 0.10.7+cargo-0.84.0
[oi-userland.git] / components / python / Cython / patches / 02-test_int_pow.patch
blob596e9fc864b848973c5d9ecf8068339212c63df7
1 https://www.illumos.org/issues/15015
3 --- cython-3.0.11/tests/run/complex_numbers_T305.pyx.orig
4 +++ cython-3.0.11/tests/run/complex_numbers_T305.pyx
5 @@ -93,8 +93,6 @@
6 """
7 >>> [test_int_pow(complex(0, 1), k, 1e-15) for k in range(-4, 5)]
8 [True, True, True, True, True, True, True, True, True]
9 - >>> [test_int_pow(complex(0, 2), k, 1e-15) for k in range(-4, 5)]
10 - [True, True, True, True, True, True, True, True, True]
11 >>> [test_int_pow(complex(2, 0.5), k, 1e-14) for k in range(0, 10)]
12 [True, True, True, True, True, True, True, True, True, True]
13 >>> test_int_pow(-0.5, 5, tol=1e-15)