Go to file
Python Maint da32ae1683 Rebuilt for Python 3.11 2022-06-13 18:18:46 +02:00
.gitignore Version 1.10.3. Add -minsigstksz patch to fix FTBFS (bz 1935643). 2021-06-17 13:50:52 -06:00
README.md Version 1.11.2. 2022-03-17 15:34:57 -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 Python 3.11 2022-06-13 18:18:46 +02:00
sources Version 1.11.2. 2022-03-17 15:34:57 -06:00

README.md

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.