Frame skipped from debugging during step-in. Note: may have been skipped because of “justMyCode“

当使用Python调试时遇到frameskip现象,不能深入到库代码中,可能是因为justMyCode配置选项设为true。要允许步入所有代码,需在launch.json中将justMyCode设置为false,这样可以跨过只调试自定义代码的限制。
摘要由CSDN通过智能技术生成

python无法step into调试的代码

Frame skipped from debugging during step-in.
Note: may have been skipped because of "justMyCode" option (default == true). Try setting "justMyCode": false in the debug configuration (e.g., launch.json).

就是说我们在调试过程中点击单步进入时并没有跳到别的库(该行代码调用的方法所在的包)中,而是直接跳到我们写的代码的下一行了。原因就是launch.json文件中有一项justMyCode 默认为true,即只在我们写的代码中调试,所以我们把它改为false即可。

"configurations": [

        {
            "name": "Python: Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "justMyCode": false

alse,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值