summaryrefslogtreecommitdiff
path: root/cygdb.py
diff options
context:
space:
mode:
authorMark Florisson <markflorisson88@gmail.com>2010-12-01 21:48:25 +0100
committerMark Florisson <markflorisson88@gmail.com>2010-12-01 21:48:25 +0100
commitc12526e93b9e287af009ee088465de1f23075747 (patch)
tree2428be68d2eb4cb47ad673a3175fb4022fa830c6 /cygdb.py
parentfae8606ebfc5946c0894576fba571c70af0f27d2 (diff)
downloadcython-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 'cygdb.py')
-rw-r--r--cygdb.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/cygdb.py b/cygdb.py
index e573531d7..0452d0b1c 100644
--- a/cygdb.py
+++ b/cygdb.py
@@ -5,15 +5,4 @@ import sys
from Cython.Debugger import Cygdb as cygdb
if __name__ == '__main__':
- if len(sys.argv) > 1:
- path_to_debug_info = sys.argv[1]
-
- no_import = False
- if path_to_debug_info == '--':
- no_import = True
-
- cygdb.main(path_to_debug_info,
- gdb_argv=sys.argv[2:],
- no_import=no_import)
- else:
cygdb.main()