使用Visual Studio Code逐步调试Python中的导入模块

时间:2018-12-27 10:03:45

标签: python debugging visual-studio-code python-import

def __self__(self):
    return `this class has the following attributes: %s %s %s %s` % (self.username,self.password,self.email ,self.numOfLogins )

我在此代码的第二行中添加了一个断点,Visual Studio代码在此断点处停止。但是,当我尝试进入“ read_csv”函数时,vscode显然执行了“跳过”。 我还尝试在“ read_csv”函数中设置断点,但结果相同。

那么我如何进入提到的功能?

2 个答案:

答案 0 :(得分:1)

要进入第三方代码,请在launch.json配置中设置"debugOptions": ["DebugStdLib"]

答案 1 :(得分:1)

截至2019年4月的更新debugStdLib更改为

"justMyCode": false

https://code.visualstudio.com/docs/python/debugging#_justmycode