Skip to content

Commit 673cb1d

Browse files
kylehofmanntscrim
andauthored
Don't suppress FLINT abort exception
Co-authored-by: Travis Scrimshaw <[email protected]>
1 parent ddbc3ce commit 673cb1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/libs/flint/nmod_poly_linkage.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ cdef inline int celement_gcd(nmod_poly_t res, nmod_poly_t a, nmod_poly_t b, unsi
602602
finally:
603603
sig_off()
604604
except RuntimeError:
605-
raise RuntimeError("FLINT gcd calculation failed") from None
605+
raise RuntimeError("FLINT gcd calculation failed")
606606

607607
cdef unsigned long leadcoeff = nmod_poly_get_coeff_ui(res, nmod_poly_degree(res))
608608
cdef unsigned long modulus = nmod_poly_modulus(res)

0 commit comments

Comments
 (0)