Preliminary debug support for Cython
authorMark Florisson <markflorisson88@gmail.com>
Sat, 18 Sep 2010 22:44:06 +0000 (00:44 +0200)
committerMark Florisson <markflorisson88@gmail.com>
Sat, 18 Sep 2010 22:44:06 +0000 (00:44 +0200)
commitf88e64b67c619ec8bfa23779dcda78ace535bb6b
tree11e7b58be6767cc5675b4676f4db95f5f60e5bb6
parentb6dbdc5d40c3745a06db674e5171c2f31e311a51
Preliminary debug support for Cython

added the --pyrex-debug flag to Cython's build_ext
added the pyrex_debug boolean to Cython's Cython.Distutils.extension.Extension
    (for per-module debugging information)
debug output is written to the cython_debug directory
bin/cygdb is included (start this from the build directory)
    working commands: cy import, cy locals, cy break
when debugging is active, export all functions as extern
Cython/Compiler/CmdLine.py
Cython/Compiler/Errors.py
Cython/Compiler/Main.py
Cython/Compiler/ParseTreeTransforms.py
Cython/Debugger/__init__.py [new file with mode: 0644]
Cython/Debugger/libcython.py [new file with mode: 0644]
Cython/Debugger/libpython.py [new file with mode: 0644]
Cython/Distutils/build_ext.py
Cython/Distutils/extension.py
bin/cygdb [new file with mode: 0755]