Metadata-Version: 1.1
Name: cysignals
Version: 1.6.7
Summary: Interrupt and signal handling for Cython
Home-page: https://github.com/sagemath/cysignals
Author: Martin R. Albrecht, François Bissey, Volker Braun, Jeroen Demeyer
Author-email: sage-devel@googlegroups.com
License: GNU Lesser General Public License, version 3 or later
Description-Content-Type: UNKNOWN
Description: cysignals: interrupt and signal handling for Cython
        ===================================================
        
        .. image:: https://travis-ci.org/sagemath/cysignals.svg?branch=master
            :target: https://travis-ci.org/sagemath/cysignals
        
        .. image:: https://readthedocs.org/projects/cysignals/badge/?version=latest
            :target: http://cysignals.readthedocs.org
        
        When writing `Cython <http://cython.org/>`_ 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.
        
        See http://cysignals.readthedocs.org/ for the full documentation.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: POSIX
Classifier: Programming Language :: C
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: System
Classifier: Topic :: Software Development :: Debuggers
