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”函数中设置断点,但结果相同。
那么我如何进入提到的功能?
答案 0 :(得分:1)
要进入第三方代码,请在launch.json
配置中设置"debugOptions": ["DebugStdLib"]
。
答案 1 :(得分:1)
截至2019年4月的更新debugStdLib更改为
"justMyCode": false
https://code.visualstudio.com/docs/python/debugging#_justmycode