Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debugging a different cell with the same variables doesn't update the variables view #10199

Closed
kimadeline opened this issue May 31, 2022 · 1 comment
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug interactive-window-debugging verified Verification succeeded
Milestone

Comments

@kimadeline
Copy link
Contributor

Testing #10184

Probably the same root cause as #10187

  1. Add 2 cells:
# %%
a = 1234
b = 1
print(a)
c = a + b
print(c)

# %%
a = 3333
b = 3
print(a)
c = a - b
print(c)
  1. Debug the first cell, see that a, b and c appear in the variables view once debugging is done
  2. Debug the second cell, notice that a, b and c are not updated until after debugging is done
@github-actions github-actions bot added the triage-needed Issue needs to be triaged label May 31, 2022
@greazer
Copy link
Member

greazer commented Jun 2, 2022

Most likely fixed in recent bits.

@greazer greazer closed this as completed Jun 2, 2022
@greazer greazer added this to the May 2022 milestone Jun 2, 2022
@greazer greazer added bug Issue identified by VS Code Team member as probable bug notebook-debugging interactive-window-debugging and removed notebook-debugging triage-needed Issue needs to be triaged labels Jun 2, 2022
@amunger amunger added the verified Verification succeeded label Jun 2, 2022
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jun 3, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug interactive-window-debugging verified Verification succeeded
Projects
None yet
Development

No branches or pull requests

4 participants