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
>>> from urllib.request import pathname2url
>>> pathname2url("C:/Users/kreij/AppData/Roaming/jupyter/runtime/jpserver-18504-open.html")
'///C://Users/kreij/AppData/Roaming/jupyter/runtime/jpserver-18504-open.html'
While the output should be
'//C:/Users/kreij/AppData/Roaming/jupyter/runtime/jpserver-18504-open.html'
With 3 '/' aka file:/// no browser gets launched
On my computer when I open explorer.exe and insert file:///C://Users/kreij/AppData/Roaming/jupyter/runtime/jpserver-18504-open.html
nothing happens, but when I insert file://C:/Users/kreij/AppData/Roaming/jupyter/runtime/jpserver-18504-open.html
a browser gets launched
Fixing this would fix the jupyter problem
Your environment
mingw64
The text was updated successfully, but these errors were encountered:
Kreijstal
changed the title
urlib.request has the wrong output
urlib.request has the wrong output? or is jupyter understanding
Nov 19, 2024
msys2/MINGW-packages#21139
Bug report
cpython-mingw/Lib/nturl2path.py
Line 45 in d21f60d
While the output should be
'//C:/Users/kreij/AppData/Roaming/jupyter/runtime/jpserver-18504-open.html'
With 3 '/' aka
file:///
no browser gets launchedOn my computer when I open explorer.exe and insert
file:///C://Users/kreij/AppData/Roaming/jupyter/runtime/jpserver-18504-open.html
nothing happens, but when I insert
file://C:/Users/kreij/AppData/Roaming/jupyter/runtime/jpserver-18504-open.html
a browser gets launched
Fixing this would fix the jupyter problem
Your environment
mingw64
The text was updated successfully, but these errors were encountered: