We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Clicking on the line number in the cell output of a traceback should take me to the file
Error message "Unable to open 'script.py' The editor could not be opened becouse the file was not found
On visual studio server, connect to the remote and create the files below
minimal.ipynb:
from script import failfunction failfunction()
script.py: def failfunction(): return fail
NameError Traceback (most recent call last) Cell In[2], line 2 1 from script import failfunction ----> 2 failfunction()
File c:\Users\XXX\script.py:2, in failfunction() 1 def failfunction(): ----> 2 return fail
NameError: name 'fail' is not defined
Clicking on line two you are supposed to open the python file but instead get error
The text was updated successfully, but these errors were encountered:
amunger
No branches or pull requests
Environment data
Expected behaviour
Clicking on the line number in the cell output of a traceback should take me to the file
Actual behaviour
Error message "Unable to open 'script.py' The editor could not be opened becouse the file was not found
Steps to reproduce:
On visual studio server, connect to the remote and create the files below
minimal.ipynb:
from script import failfunction
failfunction()
script.py:
def failfunction():
return fail
Cell output:
NameError Traceback (most recent call last)
Cell In[2], line 2
1 from script import failfunction
----> 2 failfunction()
File c:\Users\XXX\script.py:2, in failfunction()
1 def failfunction():
----> 2 return fail
NameError: name 'fail' is not defined
Clicking on line two you are supposed to open the python file but instead get error
The text was updated successfully, but these errors were encountered: