You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
Environment data
Actual behavior
Debugger breaks on the last line of the with block ie
print('done')
lineExpected behavior
Debugger breaks on the line that causes the exception inside the with block ie
json.loads
lineSteps to reproduce:
Use this code (assumes a hello.json file is present). Note that json module was not imported, which will cause an exception to be raised.:
Start debugging.
Exception is reported on line 4, instead of line 2
By comparison, this code behaves as expected, breaks on line 2
The text was updated successfully, but these errors were encountered: