Gonzalo Tornaría
Gonzalo Tornaría
> 1. Fixing matplotlib would be a good idea. It's not even that hard, see my fix for prompt_toolkit. It went through a lot of iterations to make it so...
> > We don't need cysignals for this. > > Yes, but that's not the point: my point is [matplotlib + no cysignals] leaves interruption of Python code working, but...
There's a more detailed trace in https://github.com/sagemath/sage/pull/36407#issuecomment-2068709126
I had to skip a couple of tests due to "OSError: out of pty devices"... Two tests in `python3-pytest-timeout` that trigger only on CI, and two tests in `tox` that...
I see now this causes some issues when on `legacy_implicit_noexcept` mode. I'll try to figure out another way. This all has to do with what happens when there are two...
This seems a better fix: ```diff --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -3126,6 +3126,8 @@ class DefNode(FuncDefNode): if scope is None: scope = cfunc.scope cfunc_type = cfunc.type + if cfunc_type.exception_check: +...
> Do you have a quick example of some code that you addition fixes? > > I'm just trying to make this as tested as possible It's already tested in...
What is holding this? We need to move on.