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

jupyter console incorrectly interprets arrow keys inside pdb debug sessions #7167

Closed
yosinski opened this issue Nov 30, 2023 · 3 comments
Closed
Labels
bug status:Needs Triage Applied to issues that need triage

Comments

@yosinski
Copy link

Description

When running jupyter console from the terminal and entering the pdb (ipdb) debugger, arrow keys and and other keys are not interpreted correctly. I've tried to find a fix for this and have not found anything.

Reproduce

To reproduce, I'll show a difference between the correct behavior when running using ipython and incorrect behavior within jupyter console.

  1. Create and activate a fresh virtualenv using python3.9 (same behavior occurs with python3.11)
  2. pip install jupyter

ipython works as expected

  1. Start ipython, create an exception, and drop into pdb using the %debug magic line:
$ ipython
Python 3.9.18 (main, Aug 24 2023, 21:20:15)
Type 'copyright', 'credits' or 'license' for more information
IPython 8.18.1 -- An enhanced Interactive Python. Type '?' for help.

In [1]: assert False
---------------------------------------------------------------------------
AssertionError                            Traceback (most recent call last)
Cell In[1], line 1
----> 1 assert False

AssertionError:

In [2]: %debug
> <ipython-input-1-a871fdc9ebee>(1)<module>()
----> 1 assert False

ipdb>
  1. Now, at the ipdb prompt, type a few letters and then push the left arrow key. Exact keystrokes: asdf<left arrow><left arrow>. The cursor moves back as expected:
    Screenshot 2023-11-30 at 12 25 19 PM

jupyter console does not work as expected

  1. Start jupyter console, create an exception, and drop into pdb using the %debug magic line:
$ jupyter console
Jupyter console 6.6.3

Python 3.9.18 (main, Aug 24 2023, 21:20:15)
Type 'copyright', 'credits' or 'license' for more information
IPython 8.18.1 -- An enhanced Interactive Python. Type '?' for help.

In [1]: assert False
---------------------------------------------------------------------------
AssertionError                            Traceback (most recent call last)
Cell In[1], line 1
----> 1 assert False

AssertionError:

In [2]: %debug
> /var/folders/55/z__ff1rx7tq84rxr_62wls780000gn/T/ipykernel_24856/2103537015.py(1)<module>()
----> 1 assert False

ipdb>
  1. Now, at the ipdb prompt, type a few letters and then push the left arrow key. Exact keystrokes: asdf<left arrow><left arrow>. The arrow keys are misinterpretted as ^[[D:

Screenshot 2023-11-30 at 12 28 55 PM

  1. Other readline style keys that usually work also fail here, e.g. C-a to go to the beginning of the line works in ipython but does not in jupyter console.

Expected behavior

Expected: arrow keys that work correctly within ipython would also work within jupyter console.

Actual: jupyter console misinterprets arrow keys.

Context

  • Operating System and version: MacOS Ventural 13.6
  • Browser and version: N/A
  • Jupyter Notebook version:
$ jupyter --version
Selected Jupyter core packages...
IPython          : 8.18.1
ipykernel        : 6.27.1
ipywidgets       : 8.1.1
jupyter_client   : 8.6.0
jupyter_core     : 5.5.0
jupyter_server   : 2.11.1
jupyterlab       : 4.0.9
nbclient         : 0.9.0
nbconvert        : 7.11.0
nbformat         : 5.9.2
notebook         : 7.0.6
qtconsole        : 5.5.1
traitlets        : 5.14.0
Troubleshoot Output
 $ jupyter troubleshoot
$PATH:
	/Users/jason/virtualenvs/jup_bug/bin
	/Users/jason/local/sbin
	/Users/jason/local/bin
	/opt/homebrew/bin
	/opt/homebrew/sbin
	/opt/homebrew/opt/python@3.9/libexec/bin
	/opt/homebrew/opt/coreutils/libexec/gnubin
	/usr/local/bin
	/usr/local/sbin
	/usr/local/cuda/bin
	/usr/bin
	/bin
	/usr/sbin
	/sbin
	/opt/X11/bin
	/Library/TeX/texbin

sys.path:
/Users/jason/virtualenvs/jup_bug/bin
/Users/jason
/opt/homebrew/Cellar/python@3.9/3.9.18/Frameworks/Python.framework/Versions/3.9/lib/python39.zip
/opt/homebrew/Cellar/python@3.9/3.9.18/Frameworks/Python.framework/Versions/3.9/lib/python3.9
/opt/homebrew/Cellar/python@3.9/3.9.18/Frameworks/Python.framework/Versions/3.9/lib/python3.9/lib-dynload
/Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages

sys.executable:
/Users/jason/virtualenvs/jup_bug/bin/python

sys.version:
3.9.18 (main, Aug 24 2023, 21:20:15)
[Clang 14.0.0 (clang-1400.0.29.202)]

platform.platform():
macOS-13.6-arm64-arm-64bit

which -a jupyter:
/Users/jason/virtualenvs/jup_bug/bin/jupyter

pip list:
Package Version
------------------------- ----------
anyio 4.1.0
appnope 0.1.3
argon2-cffi 23.1.0
argon2-cffi-bindings 21.2.0
arrow 1.3.0
asttokens 2.4.1
async-lru 2.0.4
attrs 23.1.0
Babel 2.13.1
beautifulsoup4 4.12.2
bleach 6.1.0
certifi 2023.11.17
cffi 1.16.0
charset-normalizer 3.3.2
comm 0.2.0
debugpy 1.8.0
decorator 5.1.1
defusedxml 0.7.1
exceptiongroup 1.2.0
executing 2.0.1
fastjsonschema 2.19.0
fqdn 1.5.1
idna 3.6
importlib-metadata 6.8.0
ipykernel 6.27.1
ipython 8.18.1
ipywidgets 8.1.1
isoduration 20.11.0
jedi 0.19.1
Jinja2 3.1.2
json5 0.9.14
jsonpointer 2.4
jsonschema 4.20.0
jsonschema-specifications 2023.11.2
jupyter 1.0.0
jupyter_client 8.6.0
jupyter-console 6.6.3
jupyter_core 5.5.0
jupyter-events 0.9.0
jupyter-lsp 2.2.1
jupyter_server 2.11.1
jupyter_server_terminals 0.4.4
jupyterlab 4.0.9
jupyterlab_pygments 0.3.0
jupyterlab_server 2.25.2
jupyterlab-widgets 3.0.9
MarkupSafe 2.1.3
matplotlib-inline 0.1.6
mistune 3.0.2
nbclient 0.9.0
nbconvert 7.11.0
nbformat 5.9.2
nest-asyncio 1.5.8
notebook 7.0.6
notebook_shim 0.2.3
overrides 7.4.0
packaging 23.2
pandocfilters 1.5.0
parso 0.8.3
pexpect 4.9.0
pip 23.3.1
platformdirs 4.0.0
prometheus-client 0.19.0
prompt-toolkit 3.0.41
psutil 5.9.6
ptyprocess 0.7.0
pure-eval 0.2.2
pycparser 2.21
Pygments 2.17.2
python-dateutil 2.8.2
python-json-logger 2.0.7
PyYAML 6.0.1
pyzmq 25.1.1
qtconsole 5.5.1
QtPy 2.4.1
referencing 0.31.1
requests 2.31.0
rfc3339-validator 0.1.4
rfc3986-validator 0.1.1
rpds-py 0.13.2
Send2Trash 1.8.2
setuptools 68.2.2
six 1.16.0
sniffio 1.3.0
soupsieve 2.5
stack-data 0.6.3
terminado 0.18.0
tinycss2 1.2.1
tomli 2.0.1
tornado 6.4
traitlets 5.14.0
types-python-dateutil 2.8.19.14
typing_extensions 4.8.0
uri-template 1.3.0
urllib3 2.1.0
wcwidth 0.2.12
webcolors 1.13
webencodings 0.5.1
websocket-client 1.6.4
wheel 0.41.3
widgetsnbextension 4.0.9
zipp 3.17.0

Command Line Output
(Body of this post was too long, so I have instead included this output in a comment below)
Browser Output
I think this is not applicable.
@yosinski yosinski added bug status:Needs Triage Applied to issues that need triage labels Nov 30, 2023
@yosinski yosinski changed the title jupyter console incorrectly interpretting arrow keys inside pdb debug sessions jupyter console incorrectly interprets arrow keys inside pdb debug sessions Nov 30, 2023
@yosinski
Copy link
Author

The "Command Line Output" section above could not be included because it made the post too long, so I have included it here:

Command Line Output
$ jupyter notebook --debug
[D 2023-11-30 12:43:27.410 ServerApp] Searching ['/Users/jason/virtualenvs/jup_bug/etc/jupyter', '/Users/jason/.jupyter', '/usr/local/etc/jupyter', '/etc/jupyter'] for config files
[D 2023-11-30 12:43:27.410 ServerApp] Looking for jupyter_config in /etc/jupyter
[D 2023-11-30 12:43:27.410 ServerApp] Looking for jupyter_config in /usr/local/etc/jupyter
[D 2023-11-30 12:43:27.410 ServerApp] Looking for jupyter_config in /Users/jason/.jupyter
[D 2023-11-30 12:43:27.410 ServerApp] Looking for jupyter_config in /Users/jason/virtualenvs/jup_bug/etc/jupyter
[D 2023-11-30 12:43:27.411 ServerApp] Looking for jupyter_server_config in /etc/jupyter
[D 2023-11-30 12:43:27.411 ServerApp] Looking for jupyter_server_config in /usr/local/etc/jupyter
[D 2023-11-30 12:43:27.411 ServerApp] Looking for jupyter_server_config in /Users/jason/.jupyter
[D 2023-11-30 12:43:27.411 ServerApp] Looking for jupyter_server_config in /Users/jason/virtualenvs/jup_bug/etc/jupyter
[D 2023-11-30 12:43:27.412 ServerApp] Paths used for configuration of jupyter_server_config:
    	/etc/jupyter/jupyter_server_config.json
[D 2023-11-30 12:43:27.412 ServerApp] Paths used for configuration of jupyter_server_config:
    	/usr/local/etc/jupyter/jupyter_server_config.json
[D 2023-11-30 12:43:27.412 ServerApp] Paths used for configuration of jupyter_server_config:
    	/Users/jason/.jupyter/jupyter_server_config.json
[D 2023-11-30 12:43:27.412 ServerApp] Paths used for configuration of jupyter_server_config:
    	/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.d/jupyter-lsp-jupyter-server.json
    	/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.d/jupyter_server_terminals.json
    	/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.d/jupyterlab.json
    	/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.d/notebook.json
    	/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.d/notebook_shim.json
    	/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.json
[I 2023-11-30 12:43:27.414 ServerApp] Package notebook took 0.0000s to import
[I 2023-11-30 12:43:27.420 ServerApp] Package jupyter_lsp took 0.0050s to import
[W 2023-11-30 12:43:27.420 ServerApp] A `_jupyter_server_extension_points` function was not found in jupyter_lsp. Instead, a `_jupyter_server_extension_paths` function was found and will be used for now. This function name will be deprecated in future releases of Jupyter Server.
[I 2023-11-30 12:43:27.422 ServerApp] Package jupyter_server_terminals took 0.0021s to import
[I 2023-11-30 12:43:27.422 ServerApp] Package jupyterlab took 0.0000s to import
[I 2023-11-30 12:43:27.592 ServerApp] Package notebook_shim took 0.0000s to import
[W 2023-11-30 12:43:27.592 ServerApp] A `_jupyter_server_extension_points` function was not found in notebook_shim. Instead, a `_jupyter_server_extension_paths` function was found and will be used for now. This function name will be deprecated in future releases of Jupyter Server.
[I 2023-11-30 12:43:27.592 ServerApp] jupyter_lsp | extension was successfully linked.
[D 2023-11-30 12:43:27.594 TerminalsExtensionApp] Config changed: {'ServerApp': {'log_level': 'DEBUG', 'jpserver_extensions': }, 'ExtensionApp': {'log_level': 'DEBUG'}}
[D 2023-11-30 12:43:27.595 ServerApp] Config changed: {'ServerApp': {'log_level': 'DEBUG', 'jpserver_extensions': }, 'ExtensionApp': {'log_level': 'DEBUG'}}
[I 2023-11-30 12:43:27.595 ServerApp] jupyter_server_terminals | extension was successfully linked.
[D 2023-11-30 12:43:27.597 LabApp] Config changed: {'NotebookApp': {}, 'ServerApp': {'log_level': 'DEBUG', 'jpserver_extensions': }, 'ExtensionApp': {'log_level': 'DEBUG'}}
[I 2023-11-30 12:43:27.598 ServerApp] jupyterlab | extension was successfully linked.
[D 2023-11-30 12:43:27.600 JupyterNotebookApp] Config changed: {'NotebookApp': {'nbserver_extensions': {'jupyter_nbextensions_configurator': True}}, 'ServerApp': {'log_level': 'DEBUG', 'jpserver_extensions': }, 'ExtensionApp': {'log_level': 'DEBUG'}}
[I 2023-11-30 12:43:27.600 ServerApp] notebook | extension was successfully linked.
[D 2023-11-30 12:43:27.702 ServerApp] Paths used for configuration of jupyter_notebook_config:
    	/Users/jason/.jupyter/jupyter_notebook_config.json
[D 2023-11-30 12:43:27.702 ServerApp] Paths used for configuration of jupyter_notebook_config:
    	/etc/jupyter/jupyter_notebook_config.json
[D 2023-11-30 12:43:27.702 ServerApp] Paths used for configuration of jupyter_notebook_config:
    	/usr/local/etc/jupyter/jupyter_notebook_config.json
[D 2023-11-30 12:43:27.703 ServerApp] Paths used for configuration of jupyter_notebook_config:
    	/Users/jason/.jupyter/jupyter_notebook_config.json
[D 2023-11-30 12:43:27.703 ServerApp] Paths used for configuration of jupyter_notebook_config:
    	/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_notebook_config.d/jupyter-lsp-notebook.json
    	/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_notebook_config.d/jupyterlab.json
    	/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_notebook_config.json
[W 2023-11-30 12:43:27.703 ServerApp] jupyter_nbextensions_configurator | error adding extension (enabled: True): The module 'jupyter_nbextensions_configurator' could not be found (No module named 'jupyter_nbextensions_configurator'). Are you sure the extension is installed?
    Traceback (most recent call last):
      File "/Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/jupyter_server/extension/manager.py", line 322, in add_extension
        extpkg = ExtensionPackage(name=extension_name, enabled=enabled)
      File "/Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/jupyter_server/extension/manager.py", line 186, in __init__
        self._load_metadata()
      File "/Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/jupyter_server/extension/manager.py", line 201, in _load_metadata
        raise ExtensionModuleNotFound(msg) from None
    jupyter_server.extension.utils.ExtensionModuleNotFound: The module 'jupyter_nbextensions_configurator' could not be found (No module named 'jupyter_nbextensions_configurator'). Are you sure the extension is installed?
[I 2023-11-30 12:43:27.703 ServerApp] notebook_shim | extension was successfully linked.
[D 2023-11-30 12:43:27.704 ServerApp] Config changed: {'ExtensionApp': {'log_level': 'DEBUG'}, 'NotebookApp': {'nbserver_extensions': {'jupyter_nbextensions_configurator': True}}, 'ServerApp': {'log_level': 'DEBUG', 'jpserver_extensions': }}
[D 2023-11-30 12:43:27.704 ServerApp] Raising open file limit: soft 256->4096; hard 9223372036854775807->9223372036854775807
[I 2023-11-30 12:43:27.718 ServerApp] notebook_shim | extension was successfully loaded.
[D 2023-11-30 12:43:27.719 ServerApp] [lsp] rootUri will be file:///Users/jason/temp/empty
[D 2023-11-30 12:43:27.719 ServerApp] [lsp] virtualDocumentsUri will be file:///Users/jason/temp/empty/.virtual_documents
[I 2023-11-30 12:43:27.719 ServerApp] jupyter_lsp | extension was successfully loaded.
[I 2023-11-30 12:43:27.719 ServerApp] jupyter_server_terminals | extension was successfully loaded.
[I 2023-11-30 12:43:27.720 LabApp] JupyterLab extension loaded from /Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/jupyterlab
[I 2023-11-30 12:43:27.720 LabApp] JupyterLab application directory is /Users/jason/virtualenvs/jup_bug/share/jupyter/lab
[I 2023-11-30 12:43:27.720 LabApp] Extension Manager is 'pypi'.
[D 2023-11-30 12:43:27.721 LabApp] Extensions list will be fetched from https://pypi.org/pypi.
[I 2023-11-30 12:43:27.722 ServerApp] jupyterlab | extension was successfully loaded.
[I 2023-11-30 12:43:27.723 ServerApp] notebook | extension was successfully loaded.
[I 2023-11-30 12:43:27.724 ServerApp] Serving notebooks from local directory: /Users/jason/temp/empty
[I 2023-11-30 12:43:27.724 ServerApp] Jupyter Server 2.11.1 is running at:
[I 2023-11-30 12:43:27.724 ServerApp] http://localhost:8888/tree?token=ea2434cc2e1fca0bf6e948aeed26ca572ac617c7924492c4
[I 2023-11-30 12:43:27.724 ServerApp]     http://127.0.0.1:8888/tree?token=ea2434cc2e1fca0bf6e948aeed26ca572ac617c7924492c4
[I 2023-11-30 12:43:27.724 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 2023-11-30 12:43:27.730 ServerApp]
To access the server, open this file in a browser:
    file:///Users/jason/Library/Jupyter/runtime/jpserver-25678-open.html
Or copy and paste one of these URLs:
    http://localhost:8888/tree?token=ea2434cc2e1fca0bf6e948aeed26ca572ac617c7924492c4
    http://127.0.0.1:8888/tree?token=ea2434cc2e1fca0bf6e948aeed26ca572ac617c7924492c4

[D 2023-11-30 12:43:27.733 ServerApp] Paths used for configuration of jupyter_config:
/etc/jupyter/jupyter_config.json
[D 2023-11-30 12:43:27.733 ServerApp] Paths used for configuration of jupyter_config:
/usr/local/etc/jupyter/jupyter_config.json
[D 2023-11-30 12:43:27.733 ServerApp] Paths used for configuration of jupyter_config:
/Users/jason/.jupyter/jupyter_config.json
[D 2023-11-30 12:43:27.734 ServerApp] Paths used for configuration of jupyter_config:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_config.json
[D 2023-11-30 12:43:27.734 ServerApp] Paths used for configuration of jupyter_notebook_config:
/etc/jupyter/jupyter_notebook_config.json
[D 2023-11-30 12:43:27.734 ServerApp] Paths used for configuration of jupyter_notebook_config:
/usr/local/etc/jupyter/jupyter_notebook_config.json
[D 2023-11-30 12:43:27.734 ServerApp] Paths used for configuration of jupyter_notebook_config:
/Users/jason/.jupyter/jupyter_notebook_config.json
[D 2023-11-30 12:43:27.734 ServerApp] Paths used for configuration of jupyter_notebook_config:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_notebook_config.d/jupyter-lsp-notebook.json
/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_notebook_config.d/jupyterlab.json
/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_notebook_config.json
[D 2023-11-30 12:43:27.734 ServerApp] Paths used for configuration of jupyter_server_config:
/etc/jupyter/jupyter_server_config.json
[D 2023-11-30 12:43:27.734 ServerApp] Paths used for configuration of jupyter_server_config:
/usr/local/etc/jupyter/jupyter_server_config.json
[D 2023-11-30 12:43:27.734 ServerApp] Paths used for configuration of jupyter_server_config:
/Users/jason/.jupyter/jupyter_server_config.json
[D 2023-11-30 12:43:27.734 ServerApp] Paths used for configuration of jupyter_server_config:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.d/jupyter-lsp-jupyter-server.json
/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.d/jupyter_server_terminals.json
/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.d/jupyterlab.json
/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.d/notebook.json
/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.d/notebook_shim.json
/Users/jason/virtualenvs/jup_bug/etc/jupyter/jupyter_server_config.json
[D 2023-11-30 12:43:27.924 ServerApp] Checking for /Users/jason/temp/empty/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.924 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.924 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.924 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.924 ServerApp] Checking for /opt/homebrew/lib/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.924 ServerApp] Checking for /opt/homebrew/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.925 ServerApp] bash-language-server/out/cli.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/temp/empty/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /opt/homebrew/lib/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /opt/homebrew/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.925 ServerApp] bash-language-server/bin/main.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/temp/empty/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /opt/homebrew/lib/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /opt/homebrew/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.925 ServerApp] dockerfile-language-server-nodejs/lib/server.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/temp/empty/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /opt/homebrew/lib/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.925 ServerApp] Checking for /opt/homebrew/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.925 ServerApp] javascript-typescript-langserver/lib/language-server-stdio.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.926 ServerApp] Checking for /Users/jason/temp/empty/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.926 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.926 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.926 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.926 ServerApp] Checking for /opt/homebrew/lib/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.926 ServerApp] Checking for /opt/homebrew/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.926 ServerApp] pyright/langserver.index.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/temp/empty/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /opt/homebrew/lib/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /opt/homebrew/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] sql-language-server/dist/bin/cli.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/temp/empty/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /opt/homebrew/lib/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /opt/homebrew/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.927 ServerApp] typescript-language-server/lib/cli.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/temp/empty/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /opt/homebrew/lib/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /opt/homebrew/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.927 ServerApp] unified-language-server/src/server.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/temp/empty/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.927 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /opt/homebrew/lib/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /opt/homebrew/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] vscode-css-languageserver-bin/cssServerMain.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/temp/empty/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /opt/homebrew/lib/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /opt/homebrew/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] vscode-html-languageserver-bin/htmlServerMain.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/temp/empty/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /opt/homebrew/lib/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /opt/homebrew/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.928 ServerApp] vscode-json-languageserver-bin/jsonServerMain.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/temp/empty/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /opt/homebrew/lib/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.928 ServerApp] Checking for /opt/homebrew/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.928 ServerApp] yaml-language-server/bin/yaml-language-server not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[I 2023-11-30 12:43:27.928 ServerApp] Skipped non-installed server(s): bash-language-server, dockerfile-language-server-nodejs, javascript-typescript-langserver, jedi-language-server, julia-language-server, pyright, python-language-server, python-lsp-server, r-languageserver, sql-language-server, texlab, typescript-language-server, unified-language-server, vscode-css-languageserver-bin, vscode-html-languageserver-bin, vscode-json-languageserver-bin, yaml-language-server
[D 2023-11-30 12:43:27.932 ServerApp] Checking for /Users/jason/temp/empty/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.932 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.932 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.932 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.932 ServerApp] Checking for /opt/homebrew/lib/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.932 ServerApp] Checking for /opt/homebrew/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.932 ServerApp] bash-language-server/out/cli.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.932 ServerApp] Checking for /Users/jason/temp/empty/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.932 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.932 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.932 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.932 ServerApp] Checking for /opt/homebrew/lib/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /opt/homebrew/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.936 ServerApp] bash-language-server/bin/main.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /Users/jason/temp/empty/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /opt/homebrew/lib/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /opt/homebrew/node_modules/bash-language-server/out/cli.js
[D 2023-11-30 12:43:27.936 ServerApp] bash-language-server/out/cli.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /Users/jason/temp/empty/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /opt/homebrew/lib/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /opt/homebrew/node_modules/bash-language-server/bin/main.js
[D 2023-11-30 12:43:27.936 ServerApp] bash-language-server/bin/main.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /Users/jason/temp/empty/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.936 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /opt/homebrew/lib/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /opt/homebrew/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.937 ServerApp] dockerfile-language-server-nodejs/lib/server.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/temp/empty/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /opt/homebrew/lib/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /opt/homebrew/node_modules/dockerfile-language-server-nodejs/lib/server.js
[D 2023-11-30 12:43:27.937 ServerApp] dockerfile-language-server-nodejs/lib/server.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/temp/empty/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /opt/homebrew/lib/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /opt/homebrew/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] javascript-typescript-langserver/lib/language-server-stdio.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/temp/empty/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /opt/homebrew/lib/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] Checking for /opt/homebrew/node_modules/javascript-typescript-langserver/lib/language-server-stdio.js
[D 2023-11-30 12:43:27.937 ServerApp] javascript-typescript-langserver/lib/language-server-stdio.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.938 ServerApp] Checking for /Users/jason/temp/empty/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.938 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.938 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.938 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.938 ServerApp] Checking for /opt/homebrew/lib/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.938 ServerApp] Checking for /opt/homebrew/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.939 ServerApp] pyright/langserver.index.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.939 ServerApp] Checking for /Users/jason/temp/empty/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.939 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.939 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.939 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.939 ServerApp] Checking for /opt/homebrew/lib/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.939 ServerApp] Checking for /opt/homebrew/node_modules/pyright/langserver.index.js
[D 2023-11-30 12:43:27.939 ServerApp] pyright/langserver.index.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /Users/jason/temp/empty/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /opt/homebrew/lib/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /opt/homebrew/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] sql-language-server/dist/bin/cli.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /Users/jason/temp/empty/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /opt/homebrew/lib/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] Checking for /opt/homebrew/node_modules/sql-language-server/dist/bin/cli.js
[D 2023-11-30 12:43:27.940 ServerApp] sql-language-server/dist/bin/cli.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /Users/jason/temp/empty/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /opt/homebrew/lib/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /opt/homebrew/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] typescript-language-server/lib/cli.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /Users/jason/temp/empty/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /opt/homebrew/lib/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] Checking for /opt/homebrew/node_modules/typescript-language-server/lib/cli.js
[D 2023-11-30 12:43:27.941 ServerApp] typescript-language-server/lib/cli.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/temp/empty/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /opt/homebrew/lib/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /opt/homebrew/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] unified-language-server/src/server.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/temp/empty/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /opt/homebrew/lib/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /opt/homebrew/node_modules/unified-language-server/src/server.js
[D 2023-11-30 12:43:27.942 ServerApp] unified-language-server/src/server.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/temp/empty/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /opt/homebrew/lib/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /opt/homebrew/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.942 ServerApp] vscode-css-languageserver-bin/cssServerMain.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/temp/empty/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.942 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.944 ServerApp] Checking for /opt/homebrew/lib/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.944 ServerApp] Checking for /opt/homebrew/node_modules/vscode-css-languageserver-bin/cssServerMain.js
[D 2023-11-30 12:43:27.944 ServerApp] vscode-css-languageserver-bin/cssServerMain.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.944 ServerApp] Checking for /Users/jason/temp/empty/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.944 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.944 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /opt/homebrew/lib/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /opt/homebrew/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] vscode-html-languageserver-bin/htmlServerMain.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/temp/empty/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /opt/homebrew/lib/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /opt/homebrew/node_modules/vscode-html-languageserver-bin/htmlServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] vscode-html-languageserver-bin/htmlServerMain.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/temp/empty/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /opt/homebrew/lib/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /opt/homebrew/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] vscode-json-languageserver-bin/jsonServerMain.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/temp/empty/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /opt/homebrew/lib/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /opt/homebrew/node_modules/vscode-json-languageserver-bin/jsonServerMain.js
[D 2023-11-30 12:43:27.945 ServerApp] vscode-json-languageserver-bin/jsonServerMain.js not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/temp/empty/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.945 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.946 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.946 ServerApp] Checking for /opt/homebrew/lib/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.946 ServerApp] Checking for /opt/homebrew/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.946 ServerApp] yaml-language-server/bin/yaml-language-server not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.946 ServerApp] Checking for /Users/jason/temp/empty/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.946 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.946 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/lib/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.946 ServerApp] Checking for /Users/jason/virtualenvs/jup_bug/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.946 ServerApp] Checking for /opt/homebrew/lib/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.946 ServerApp] Checking for /opt/homebrew/node_modules/yaml-language-server/bin/yaml-language-server
[D 2023-11-30 12:43:27.946 ServerApp] yaml-language-server/bin/yaml-language-server not found in node_modules of [PosixPath('/Users/jason/temp/empty'), PosixPath('/Users/jason/virtualenvs/jup_bug/share/jupyter/lab/staging'), PosixPath('/Users/jason/virtualenvs/jup_bug/lib'), PosixPath('/Users/jason/virtualenvs/jup_bug'), PosixPath('/opt/homebrew/lib'), PosixPath('/opt/homebrew')]
[D 2023-11-30 12:43:27.954 ServerApp] [lsp] None of the installed servers require virtual documents disabling shadow filesystem.
[D 2023-11-30 12:43:27.954 ServerApp] [lsp] The following Language Servers will be available: {}
[D 2023-11-30 12:43:29.244 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:29.245 JupyterNotebookApp] Generating new user for token-authenticated request: 91c02d595a9e4505b00871aeeede7ca9
[D 2023-11-30 12:43:29.246 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:29.246 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:29.247 ServerApp] Paths used for configuration of page_config:
/etc/jupyter/labconfig/page_config.json
[D 2023-11-30 12:43:29.247 ServerApp] Paths used for configuration of page_config:
/usr/local/etc/jupyter/labconfig/page_config.json
[D 2023-11-30 12:43:29.247 ServerApp] Paths used for configuration of page_config:
/Users/jason/.jupyter/labconfig/page_config.json
[D 2023-11-30 12:43:29.247 ServerApp] Paths used for configuration of page_config:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/page_config.json
[D 2023-11-30 12:43:29.249 JupyterNotebookApp] Using contents: services/contents
[D 2023-11-30 12:43:29.256 JupyterNotebookApp] 200 GET /tree?token=[secret] (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 13.18ms
[D 2023-11-30 12:43:29.298 ServerApp] Paths used for configuration of page_config:
/etc/jupyter/labconfig/page_config.json
[D 2023-11-30 12:43:29.298 ServerApp] Paths used for configuration of page_config:
/usr/local/etc/jupyter/labconfig/page_config.json
[D 2023-11-30 12:43:29.299 ServerApp] Paths used for configuration of page_config:
/Users/jason/.jupyter/labconfig/page_config.json
[D 2023-11-30 12:43:29.299 ServerApp] Paths used for configuration of page_config:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/page_config.json
[D 2023-11-30 12:43:29.299 JupyterNotebookApp] 200 GET /custom/custom.css (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 2.08ms
[D 2023-11-30 12:43:29.412 ServerApp] Path 3752.bundle.js served from /Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/notebook/static/3752.bundle.js
[D 2023-11-30 12:43:29.413 ServerApp] 200 GET /static/notebook/3752.bundle.js (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 2.15ms
[D 2023-11-30 12:43:29.416 ServerApp] Path 5297.bundle.js served from /Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/notebook/static/5297.bundle.js
[D 2023-11-30 12:43:29.416 ServerApp] 200 GET /static/notebook/5297.bundle.js (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 2.29ms
[D 2023-11-30 12:43:29.418 ServerApp] Path 6627.bundle.js served from /Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/notebook/static/6627.bundle.js
[D 2023-11-30 12:43:29.418 ServerApp] 200 GET /static/notebook/6627.bundle.js (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 0.52ms
[D 2023-11-30 12:43:29.418 ServerApp] Path 2122.bundle.js served from /Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/notebook/static/2122.bundle.js
[D 2023-11-30 12:43:29.418 ServerApp] 200 GET /static/notebook/2122.bundle.js (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 0.43ms
[D 2023-11-30 12:43:29.419 ServerApp] Path 5426.bundle.js served from /Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/notebook/static/5426.bundle.js
[D 2023-11-30 12:43:29.419 ServerApp] 200 GET /static/notebook/5426.bundle.js (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 0.76ms
[D 2023-11-30 12:43:29.419 ServerApp] Path 9268.bundle.js served from /Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/notebook/static/9268.bundle.js
[D 2023-11-30 12:43:29.419 ServerApp] 200 GET /static/notebook/9268.bundle.js (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 0.90ms
[D 2023-11-30 12:43:29.420 ServerApp] Path 3146.bundle.js served from /Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/notebook/static/3146.bundle.js
[D 2023-11-30 12:43:29.420 ServerApp] 200 GET /static/notebook/3146.bundle.js (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 0.99ms
[D 2023-11-30 12:43:29.420 ServerApp] Path 4382.bundle.js served from /Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/notebook/static/4382.bundle.js
[D 2023-11-30 12:43:29.421 ServerApp] 200 GET /static/notebook/4382.bundle.js (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 0.66ms
[D 2023-11-30 12:43:29.421 ServerApp] Path 3863.bundle.js served from /Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/notebook/static/3863.bundle.js
[D 2023-11-30 12:43:29.421 ServerApp] 200 GET /static/notebook/3863.bundle.js (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 0.51ms
[D 2023-11-30 12:43:29.464 ServerApp] Path favicons/favicon.ico served from /Users/jason/virtualenvs/jup_bug/lib/python3.9/site-packages/jupyter_server/static/favicons/favicon.ico
[D 2023-11-30 12:43:29.466 ServerApp] 200 GET /static/favicons/favicon.ico (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.83ms
[D 2023-11-30 12:43:29.532 ServerApp] Path jupyterlab_pygments/static/568.1e2faa2ba0bbe59c4780.js served from /Users/jason/virtualenvs/jup_bug/share/jupyter/labextensions/jupyterlab_pygments/static/568.1e2faa2ba0bbe59c4780.js
[D 2023-11-30 12:43:29.533 ServerApp] 200 GET /lab/extensions/jupyterlab_pygments/static/568.1e2faa2ba0bbe59c4780.js?v=1e2faa2ba0bbe59c4780 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 2.05ms
[D 2023-11-30 12:43:29.535 ServerApp] Path @jupyter-widgets/jupyterlab-manager/static/965.9a2bfc1116cea35345ca.js served from /Users/jason/virtualenvs/jup_bug/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/965.9a2bfc1116cea35345ca.js
[D 2023-11-30 12:43:29.536 ServerApp] 200 GET /lab/extensions/@jupyter-widgets/jupyterlab-manager/static/965.9a2bfc1116cea35345ca.js?v=9a2bfc1116cea35345ca (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 1.91ms
[D 2023-11-30 12:43:29.552 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:29.554 ServerApp] Found kernel python3 in /Users/jason/virtualenvs/jup_bug/share/jupyter/kernels
[D 2023-11-30 12:43:29.555 ServerApp] Found kernel itorch in /Users/jason/Library/Jupyter/kernels
[D 2023-11-30 12:43:29.583 ServerApp] 200 GET /api/kernelspecs?1701377009548 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 32.48ms
[D 2023-11-30 12:43:29.583 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:29.584 ServerApp] 200 GET /api/me?1701377009548 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 32.25ms
[D 2023-11-30 12:43:29.584 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:29.584 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:29.585 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:29.585 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:29.586 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:29.628 LabApp] 200 GET /lab/api/settings?1701377009550 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 44.18ms
[D 2023-11-30 12:43:29.628 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:29.629 ServerApp] 101 GET /api/events/subscribe?token=[secret] (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 43.86ms
[D 2023-11-30 12:43:29.629 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:29.629 ServerApp] 200 GET /api/kernels?1701377009552 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 44.06ms
[D 2023-11-30 12:43:29.629 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:29.630 ServerApp] 200 GET /api/sessions?1701377009553 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 44.48ms
[D 2023-11-30 12:43:29.630 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:29.630 TerminalsExtensionApp] 200 GET /api/terminals?1701377009553 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 44.62ms
[D 2023-11-30 12:43:29.631 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:29.631 ServerApp] Found kernel python3 in /Users/jason/virtualenvs/jup_bug/share/jupyter/kernels
[D 2023-11-30 12:43:29.631 ServerApp] Found kernel itorch in /Users/jason/Library/Jupyter/kernels
[D 2023-11-30 12:43:29.631 ServerApp] 200 GET /api/kernelspecs?1701377009585 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 0.98ms
[D 2023-11-30 12:43:29.631 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:29.632 ServerApp] 200 GET /api/me?1701377009585 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 1.09ms
[D 2023-11-30 12:43:30.692 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.692 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.692 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.693 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.693 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.709 ServerApp] 200 GET /lab/api/translations/default?1701377010676 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 19.85ms
[D 2023-11-30 12:43:30.753 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.755 ServerApp] 200 GET /lsp/status?1701377010750 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 2.44ms
[D 2023-11-30 12:43:30.802 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.803 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.803 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.803 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.803 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.805 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.805 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.805 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.805 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.805 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.806 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.806 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.806 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.811 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.811 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.811 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.811 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.812 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.812 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.812 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.812 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.813 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.824 LabApp] 200 GET /lab/api/settings?ids_only=true&1701377010807 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 14.39ms
[D 2023-11-30 12:43:30.825 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.860 LabApp] 200 GET /lab/api/settings?1701377010807 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 48.37ms
[D 2023-11-30 12:43:30.861 ServerApp] 200 GET /api/contents?content=1&1701377010802 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 55.90ms
[D 2023-11-30 12:43:30.861 ServerApp] 200 GET /lab/api/translations?1701377010799 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 60.48ms
[D 2023-11-30 12:43:30.862 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.862 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.862 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.862 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.863 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.863 LabApp] 200 GET /lab/api/settings/@jupyterlab/codemirror-extension:plugin?1701377010859 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 1.79ms
[D 2023-11-30 12:43:30.864 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.864 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.864 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.864 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.864 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.866 LabApp] 200 GET /lab/api/settings/@jupyterlab/notebook-extension:panel?1701377010859 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 2.08ms
[D 2023-11-30 12:43:30.867 ServerApp] Path @jupyterlab/theme-light-extension/index.css served from /Users/jason/virtualenvs/jup_bug/share/jupyter/lab/themes/@jupyterlab/theme-light-extension/index.css
[D 2023-11-30 12:43:30.867 ServerApp] 200 GET /lab/api/themes/@jupyterlab/theme-light-extension/index.css (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 1.27ms
[D 2023-11-30 12:43:30.905 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.905 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.905 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.905 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.905 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.906 LabApp] 200 GET /lab/api/settings/@jupyterlab/tooltip-extension:notebooks?1701377010897 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 1.90ms
[D 2023-11-30 12:43:30.907 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.907 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.907 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.907 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.907 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.907 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.907 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.908 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.908 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.908 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.908 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.908 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.908 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.908 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.908 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.909 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.909 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.910 LabApp] 200 GET /lab/api/settings/@jupyterlab/tooltip-extension:consoles?1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.34ms
[D 2023-11-30 12:43:30.910 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.911 LabApp] 200 GET /lab/api/settings/@jupyterlab/toc-extension:registry?1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.58ms
[D 2023-11-30 12:43:30.911 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.911 LabApp] 200 GET /lab/api/settings/@jupyterlab/notebook-extension:tools?1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.84ms
[D 2023-11-30 12:43:30.912 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.912 LabApp] 200 GET /lab/api/settings/@jupyterlab/notebook-extension:completer?1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.97ms
[D 2023-11-30 12:43:30.913 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.913 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.913 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.913 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.913 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.913 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.913 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.913 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.913 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.915 LabApp] 200 GET /lab/api/settings/@jupyterlab/metadataform-extension:metadataforms?1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 2.85ms
[D 2023-11-30 12:43:30.915 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.917 LabApp] 200 GET /lab/api/settings/@jupyterlab/markdownviewer-extension:plugin?1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.79ms
[D 2023-11-30 12:43:30.917 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.917 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.917 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.918 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.918 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.918 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.918 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.918 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.919 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.919 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.919 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.919 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.919 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.919 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.919 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.919 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.919 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.920 LabApp] 200 GET /lab/api/settings/@jupyterlab/fileeditor-extension:completer?1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.17ms
[D 2023-11-30 12:43:30.920 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.921 LabApp] 200 GET /lab/api/settings/@jupyterlab/debugger-extension:main?1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.34ms
[D 2023-11-30 12:43:30.921 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.922 LabApp] 200 GET /lab/api/settings/@jupyterlab/celltags-extension:plugin?1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.37ms
[D 2023-11-30 12:43:30.922 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.923 LabApp] 200 GET /lab/api/settings/@jupyterlab/cell-toolbar-extension:plugin?1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.88ms
[D 2023-11-30 12:43:30.923 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.923 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.923 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/.jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.923 ServerApp] Paths used for configuration of default_setting_overrides:
/Users/jason/virtualenvs/jup_bug/etc/jupyter/labconfig/default_setting_overrides.json
[D 2023-11-30 12:43:30.924 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.926 LabApp] 200 GET /lab/api/settings/@jupyterlab/application-extension:context-menu?1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 2.97ms
[D 2023-11-30 12:43:30.926 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:30.926 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.926 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.926 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.926 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.926 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.926 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.926 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:30.927 ServerApp] 200 GET /api/contents?content=1&1701377010898 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.67ms
[D 2023-11-30 12:43:31.868 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:31.869 LabApp] Requesting PyPI.org RPC API for prebuilt JupyterLab extensions.
[D 2023-11-30 12:43:33.613 ServerApp] 200 GET /lab/api/extensions?query&page=1&per_page=30&refresh=0&1701377011823 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 1746.91ms
[D 2023-11-30 12:43:39.732 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:39.733 ServerApp] 200 GET /api/kernels?1701377019717 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 1.26ms
[D 2023-11-30 12:43:39.733 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:39.734 TerminalsExtensionApp] 200 GET /api/terminals?1701377019721 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 1.06ms
[D 2023-11-30 12:43:39.734 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:39.735 ServerApp] 200 GET /api/sessions?1701377019722 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 1.89ms
[D 2023-11-30 12:43:40.974 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:40.975 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:40.975 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:40.975 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:40.975 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:40.975 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:40.975 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:40.976 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:40.977 ServerApp] 200 GET /api/contents?content=1&1701377020962 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.44ms
[D 2023-11-30 12:43:49.772 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:49.774 ServerApp] 200 GET /api/kernels?1701377029739 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.89ms
[D 2023-11-30 12:43:49.774 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:49.775 TerminalsExtensionApp] 200 GET /api/terminals?1701377029741 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.78ms
[D 2023-11-30 12:43:49.775 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:49.775 ServerApp] 200 GET /api/sessions?1701377029747 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 4.13ms
[D 2023-11-30 12:43:51.009 ServerApp] Accepting token-authenticated request from 127.0.0.1
[D 2023-11-30 12:43:51.010 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:51.010 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:51.010 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:51.010 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:51.010 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:51.010 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:51.010 ServerApp] Reading path from disk:
[D 2023-11-30 12:43:51.012 ServerApp] 200 GET /api/contents?content=1&1701377030996 (91c02d595a9e4505b00871aeeede7ca9@127.0.0.1) 3.18ms

@yosinski
Copy link
Author

Thinking that interpretation of special keys may be affected by environment settings, I also compared the environment as instantiated within both ipython and jupyter console and found a few differences. Both are run from the same terminal session:

$ ipython
Python 3.9.18 (main, Aug 24 2023, 21:20:15)
Type 'copyright', 'credits' or 'license' for more information
IPython 8.18.1 -- An enhanced Interactive Python. Type '?' for help.

In [1]: import os

In [2]: ff = open('env_ipy', 'w')

In [3]: for key in sorted(os.environ.keys()):
   ...:     ff.write(f'{key}: {os.environ[key]}\n')
$ jupyter console
Jupyter console 6.6.3

Python 3.9.18 (main, Aug 24 2023, 21:20:15)
Type 'copyright', 'credits' or 'license' for more information
IPython 8.18.1 -- An enhanced Interactive Python. Type '?' for help.

In [1]: import os

In [2]: ff = open('env_jup', 'w')

In [3]: for key in sorted(os.environ.keys()):
   ...:     ff.write(f'{key}: {os.environ[key]}\n')

Here are the differences:

$ sdiff -s env_ipy env_jup
                                                              > CLICOLOR: 1
                                                              > CLICOLOR_FORCE: 1
                                                              > FORCE_COLOR: 1
                                                              > GIT_PAGER: cat
                                                              > JPY_PARENT_PID: 25828
                                                              > MPLBACKEND: module://matplotlib_inline.backend_inline
                                                              > PAGER: cat
                                                              > PYDEVD_USE_FRAME_EVAL: NO
TERM: xterm                                                   | TERM: xterm-color
_: /Users/jason/virtualenvs/jup_bug/bin/ipython               | _: /Users/jason/virtualenvs/jup_bug/bin/jupyter

I'm not sure if any are important, though I'll note that for whatever reason, jupyter console is changing the value of TERM from it's originally defined value of xterm to xterm-color

$ echo $TERM
xterm

@RRosio
Copy link
Collaborator

RRosio commented Dec 5, 2023

Thank you for opening this issue @yosinski, as this is an where the fix would be provided to jupyter console, it would be best reported to the jupyter console repository https://github.com/jupyter/jupyter_console. It looks like there is a related issue, jupyter/jupyter_console#162, where you might add your findings! I will close this issue in favor of one opened in that repository.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug status:Needs Triage Applied to issues that need triage
Projects
None yet
Development

No branches or pull requests

2 participants