什么Cygwin软件包允许我调试Python代码?

问题描述 投票:0回答:1

[还有其他类似的问题,但它们都不是我要找的东西,而那些没有任何答案。

我正在寻找Cygwin的python调试器。例如,我有用于调试C ++的gdb调试器。我找到了一个叫做pdb的东西,但是在cygwin软件包列表中找不到它。我查看了Python部分和debug部分中的每个程序包,但找不到任何东西。如果有的话,我可以使用什么包装?

python debugging cygwin
1个回答
0
投票

Python调试器是各种python软件包的一部分https://docs.python.org/3/library/pdb.html

 $ cygcheck -l python37 | grep  pdb.py
/usr/lib/python3.7/pdb.py

或也

$ cygcheck -p pdb.py
Found 35 matches for pdb.py
python2-test-2.7.14-1 - python2-test: Python 2 tests
python2-2.7.14-1 - python2: Python 2 language interpreter
python27-test-2.7.15-1 - python27-test: Python 2 tests
python27-test-2.7.16-1 - python27-test: Python 2 tests
python27-2.7.15-1 - python27: Python 2 language interpreter
python27-2.7.16-1 - python27: Python 2 language interpreter
python3-test-3.6.3-1 - python3-test: Py3K tests
python3-test-3.6.4-1 - python3-test: Py3K tests
python3-3.6.3-1 - python3: Py3K language interpreter
python3-3.6.4-1 - python3: Py3K language interpreter
python35-test-3.5.6-1 - python35-test: Py3K tests
python35-test-3.5.7-1 - python35-test: Py3K tests
python35-test-3.5.7-2 - python35-test: Py3K tests
python35-3.5.6-1 - python35: Py3K language interpreter
python35-3.5.7-1 - python35: Py3K language interpreter
python35-3.5.7-2 - python35: Py3K language interpreter
python36-test-3.6.8-1 - python36-test: Py3K tests
python36-test-3.6.9-1 - python36-test: Py3K tests
python36-3.6.8-1 - python36: Py3K language interpreter
python36-3.6.9-1 - python36: Py3K language interpreter
python37-test-3.7.3-1 - python37-test: Py3K tests
python37-test-3.7.4-1 - python37-test: Py3K tests
python37-test-3.7.7-1 - python37-test: Py3K tests
python37-3.7.3-1 - python37: Py3K language interpreter
python37-3.7.4-1 - python37: Py3K language interpreter
python37-3.7.7-1 - python37: Py3K language interpreter
python38-test-3.8.0-0.4.b2 - python38-test: Py3K tests
python38-test-3.8.0-0.5.b4 - python38-test: Py3K tests
python38-test-3.8.2-1 - python38-test: Py3K tests
python38-3.8.0-0.4.b2 - python38: Py3K language interpreter
python38-3.8.0-0.5.b4 - python38: Py3K language interpreter
python38-3.8.2-1 - python38: Py3K language interpreter
....
© www.soinside.com 2019 - 2024. All rights reserved.