Marcin Wrochna
Marcin Wrochna
### Bug description In short: jupyterhub.SingleUserApp does not pass the API token to notebook.NotebookApp, and because of that the token does not appear when listing running notebooks. In detail: In...
Compiling a handlebars file using the url filter, like say `input/index.md` with ``` foo ``` fails with an error: ``` [11ty] 1. Having trouble rendering hbs template ./input/index.md (via TemplateContentRenderError)...
The loop in `_rpmalloc_deallocate_defer_small_or_medium` and `_rpmalloc_span_extract_free_list_deferred` is a spin-lock as far as I understand. Any thread that's de-scheduled there (before free_list_deferred is restored) will block all other threads executing those...
## Bug `src/lightning_utilities/core/imports.py` imports pkg_resources, which is deprecated (since at least 2020) in favor of [importlib.resources](https://docs.python.org/3/library/importlib.html#module-importlib.resources), [importlib.metadata](https://docs.python.org/3/library/importlib.metadata.html), and their backports ([importlib_resources](https://pypi.org/project/importlib_resources), [importlib_metadata](https://pypi.org/project/importlib_metadata)). See [here](https://setuptools.pypa.io/en/latest/pkg_resources.html). ### To Reproduce ```bash PYTHONWARNINGS=default::DeprecationWarning python...
* Make a list of common compound-forming prefixes like bio- * Modify code to match them, e.g. _Biosurface and Biotribology_
Pylint emits a false positive E1130 invalid-unary-operand-type error for enum.Flag: from enum import Flag class Perm(Flag): R = 4 W = 2 X = 1 print(~Perm(2)) Emits two errors: $...