forked from sagemath/sage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sagemathgh-36507: Fix implicit noexcept warnings
We have about 7k different occurrences of this warning (about 59k with multiplicities). It turns out to be easy to fix automatically, which we do. There's only one mistake and one doctest error to fix after the automatic step. We also fix a few warnings in regards of `nogil` should appear at the end. Finally, we disable `legacy_implicit_noexcept` option which is no longer necessary. ### 📝 Checklist - [x] The title is concise, informative, and self-explanatory. - [x] The description explains in detail what this PR is about. URL: sagemath#36507 Reported by: Gonzalo Tornaría Reviewer(s): Matthias Köppe
- Loading branch information
Showing
735 changed files
with
7,115 additions
and
7,115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
src/sage/algebras/fusion_rings/fast_parallel_fmats_methods.pxd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cdef _fmat(fvars, Nk_ij, one, a, b, c, d, x, y) | ||
cpdef _backward_subs(factory, bint flatten=*) | ||
cpdef executor(tuple params) | ||
cpdef _solve_for_linear_terms(factory, list eqns=*) | ||
cdef _fmat(fvars, Nk_ij, one, a, b, c, d, x, y) noexcept | ||
cpdef _backward_subs(factory, bint flatten=*) noexcept | ||
cpdef executor(tuple params) noexcept | ||
cpdef _solve_for_linear_terms(factory, list eqns=*) noexcept |
Oops, something went wrong.