Closed
Description
Environment data
- DEBUGPY version: '1.0.0b5'
- PTVSD version: '4.3.2'
- OS and version: Windows 10
- Python version (& distribution if applicable, e.g. Anaconda): Python 3.7
- Using VS Code or Visual Studio: VS code
Actual behavior
Stepping into functions doesn't work. Opens bogus file.
Expected behavior
Stepping into functions defined in other cells would open the appropriate file with the cell.
Steps to reproduce:
- Create file like so
# %%
def baz():
print('baz')
# %%
print('foo')
baz()
- Run first cell in the interactive window in VS code
- Debug second cell
- Step into the baz call
- It will not go to where the first cell is defined.
I'll attach logs in a second.