diff options
author | Mark Florisson <markflorisson88@gmail.com> | 2010-12-01 21:48:25 +0100 |
---|---|---|
committer | Mark Florisson <markflorisson88@gmail.com> | 2010-12-01 21:48:25 +0100 |
commit | c12526e93b9e287af009ee088465de1f23075747 (patch) | |
tree | 2428be68d2eb4cb47ad673a3175fb4022fa830c6 /Cython/Debugger/libpython.py | |
parent | fae8606ebfc5946c0894576fba571c70af0f27d2 (diff) | |
download | cython-c12526e93b9e287af009ee088465de1f23075747.tar.gz |
Excluded cygdb from python 2.3 and 2.4 installations and made it 2.5 compatible
Made the distutils extension 2.3 compatible
Renamed the --debug flag to --gdb and --pyrex-debug to --pyrex-gdb
Diffstat (limited to 'Cython/Debugger/libpython.py')
-rw-r--r-- | Cython/Debugger/libpython.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Cython/Debugger/libpython.py b/Cython/Debugger/libpython.py index 66242cf8e..38bc7b817 100644 --- a/Cython/Debugger/libpython.py +++ b/Cython/Debugger/libpython.py @@ -1,7 +1,9 @@ #!/usr/bin/python # NOTE: this file is taken from the Python source distribution -# It can be found under Tools/gdb/libpython.py +# It can be found under Tools/gdb/libpython.py. It is shipped with Cython +# because it's not installed as a python module, and because changes are only +# merged into new python versions (v3.2+). ''' From gdb 7 onwards, gdb's build can be configured --with-python, allowing gdb |