-
Notifications
You must be signed in to change notification settings - Fork 307
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
Markdown cells and restarting interactive window break debugger #16520
Comments
@anthonykim1 @eleanorjboyd I found some more information and changed the report significantly. Please let me know if I should create a new bug report instead. |
thank you for the updates- I will take a look! Sorry for the delay |
This wouldn't be handled by debugpy. We don't implement debug cell. I believe that's implemented by the Jupyter extension. This is likely something to do with the dummy python files generated in the background by the Jupyter extension (that are passed to debugpy) |
Type: Bug
Behaviour
I have altered this bug report to reflect my newest findings.
It seems that Markdown cells (
# %% [markdown]
or# <markdowncell>
) break the behavior of the debugger. I noticed that I was not able to reproduce the bug in short test files, but got the bug persistently in larger project files. I broke down one of my project files cell by cell, until it worked. The last cells to be removed were Markdown cells.The debugger also break after clicking restart in the interactive window.
Steps to reproduce:
(old report)
When clicking 'Debug Cell' in a Python-script containing
#%%
markers to deliniate cells, breakpoints are ignored in a very unpredictable way. Depending on whether the first line of a cell is to be run (jupyter.stopOnFirstLineWhileDebugging), sometimes a separate tab with a title like<ipython-input-\d-\d+>
is opened, and the debugger halts on the first line. All breakpoints are ignored. In any file, when clicking 'Debug Cell' opens the interactive window (i.e., the interactive window was not opened before), the behavior seems to be as expected.In longer files, when I first run a bunch of cells normally, debug won't work. In a short file (like the example below), it does seem to work. I can't replicate when the debugger works as expected and when it doesn't.
After restarting the kernel (using the Restart button), breakpoints are entirely ignored. Closing the interactive window resets the behavior.
Diagnostic data
launch.json
configurationOutput for
Python
in theOutput
panel (View
→Output
, change the drop-down the upper-right of theOutput
panel toPython
)Output for
Python Debugger
in theOutput
panel (View
→Output
, change the drop-down the upper-right of theOutput
panel toPython Debugger
)(output is empty)
Extension version: 2025.5.2025031101
VS Code version: Code 1.98.2 (Universal) (ddc367ed5c8936efe395cffeec279b04ffd7db78, 2025-03-12T13:32:45.399Z)
OS version: Darwin arm64 24.3.0
Modes:
canvas_oop_rasterization: enabled_on
direct_rendering_display_compositor: disabled_off_ok
gpu_compositing: enabled
multiple_raster_threads: enabled_on
opengl: enabled_on
rasterization: enabled
raw_draw: disabled_off_ok
skia_graphite: disabled_off
video_decode: enabled
video_encode: enabled
webgl: enabled
webgl2: enabled
webgpu: enabled
webnn: disabled_off
The text was updated successfully, but these errors were encountered: