Go to file
David Abdurachmanov ee2fc26a95
Rebuilt for Fedora/RISCV (riscv64); adding .rvreX to Release:
Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2022-11-15 18:15:00 +02:00
.gitignore Version 1.10.3. Add -minsigstksz patch to fix FTBFS (bz 1935643). 2021-06-17 13:50:52 -06:00
python-cysignals-crash-logs.patch Do not try to write to an unwritable directory (bz 1751021). 2020-01-25 09:32:22 -07:00
python-cysignals-emms.patch New upstream version. 2019-04-23 14:40:18 -06:00
python-cysignals-fortify.patch New upstream version. 2019-04-23 14:40:18 -06:00
python-cysignals-gdb.patch Version 1.11.2. 2022-03-17 15:34:57 -06:00
python-cysignals-sigismember.patch Do not try to write to an unwritable directory (bz 1751021). 2020-01-25 09:32:22 -07:00
python-cysignals-underlink.patch New upstream version. 2019-04-23 14:40:18 -06:00
python-cysignals.spec Rebuilt for Fedora/RISCV (riscv64); adding .rvreX to Release: 2022-11-15 18:15:00 +02:00
README.md Version 1.11.2. 2022-03-17 15:34:57 -06:00
sources Version 1.11.2. 2022-03-17 15:34:57 -06:00

python-cysignals

When writing Cython code, special care must be taken to ensure that the code can be interrupted with CTRL-C. Since Cython optimizes for speed, Cython normally does not check for interrupts. For example, code like the following cannot be interrupted in Cython:

    while True:
        pass

The cysignals package provides mechanisms to handle interrupts (and other signals and errors) in Cython code.