Go to file
2022-09-27 06:56:24 -06:00
.gitignore
python-cysignals-crash-logs.patch
python-cysignals-emms.patch
python-cysignals-fortify.patch
python-cysignals-gdb.patch
python-cysignals-sigismember.patch
python-cysignals-underlink.patch
python-cysignals.spec Rebuild for pari 2.15.0. Convert License tag to SPDX. 2022-09-27 06:56:24 -06:00
README.md
sources

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.