3 | | In order to remove the dependency on `cysignals`, which at the moment doesn't work on windows without cygwin, we remove `sig_block`/`sig_unblock` from the allocation. The seems not harmful as the allocation via `MemoryAllocator` should not be called within `sig_on`/`sig_off` anyway. |
| 3 | Indeed, it doesn't depend on anything Sage-specific, |
| 4 | and it can be useful for other Cython projects. |
| 5 | |
| 6 | In order to remove the dependency on `cysignals`, which |
| 7 | at the moment doesn't work on Windows without Cygwin, we |
| 8 | remove `sig_block`/`sig_unblock` from the allocation. |
| 9 | This seems not harmful as the allocation via `MemoryAllocator` |
| 10 | should not be called within `sig_on`/`sig_off` anyway. |