Jason R. Coombs

Results 1062 comments of Jason R. Coombs

I'm having what I think is a related issue. When I run jupyter using [pip-run](https://pypi.org/project/pip-run), it fails when launching notebook with the following output: ``` draft @ py -3.10 -m...

Correction - the regression happens between [jupyterlab-server 2.22 and 2.23](https://github.com/jupyterlab/jupyterlab_server/compare/v2.22.0...v2.23.0).

Upon further testing, it looks like between [v2.22.0 and v2.22.1](https://github.com/jupyterlab/jupyterlab_server/compare/v2.22.0...v2.22.1) the behavior changes. I don't see how that's even plausible. The code changed so little. I'll keep digging.

I put in a couple of breakpoints where the code changes, but neither of those breakpoints were hit when starting up: ``` @ py -3.10 -m pip-run jupyterlab-server==2.22.1 -- -m...

Although I thought I'd isolated the issue to just `jupyterlab_server`, I see that depending on whether I install 2.22.0 or 2.22.1, I get a very different set of dependencies: ```diff...

Aha. It's because later versions of `notebook` require `jupyterlab_server>=2.22.1`, so if `jupyterlab_server==2.22.0`, pip will resolve the older versions of notebook.

First things first, I tried invoking present_participle on runs and kills, but got something different from the reverse of what you've proposed: ``` >>> eng.present_participle('runs') 'running' >>> eng.present_participle('kills') 'killing' ```...

Off the top of my head, I don't know the answer to your question. I do see that the tests don't exercise anything for "list", so it may be an...

Type hints would be welcomed as long as they are minimally impactful on the implementation and readability.

I agree with your instinct. Also, thanks for providing a reference. Would you be interested and willing to work on an implementation?