Bastian Ebeling
Bastian Ebeling
see #769 this pull solves the issue
In file `https://github.com/chubin/wttr.in/blob/master/share/translations/de.txt` in line 10 german and english is switched. I will soon provide a pull request for solution.
When running the first / easiest [example](https://joblib.readthedocs.io/en/latest/parallel.html#:~:text=%3E%3E%3E%20from%20math%20import%20sqrt%0A%3E%3E%3E%20from%20joblib%20import%20Parallel%2C%20delayed%0A%3E%3E%3E%20Parallel(n_jobs%3D2)(delayed(sqrt)(i%20**%202)%20for%20i%20in%20range(10))%0A%5B0.0%2C%201.0%2C%202.0%2C%203.0%2C%204.0%2C%205.0%2C%206.0%2C%207.0%2C%208.0%2C%209.0%5D) and assigning the result ```python theresult=Parallel(n_jobs=2)(delayed(sqrt)(i ** 2) for i in range(10)) ``` there is no type detail known. When using pylance within...
I was just trying to understand the sourcecode of parallel.py and found the following warning/issue (by pylance) > Declaration "delayed_function" is obscured by a declaration of the same name (PylancereportGeneralTypeIssues)...
By [PEP 0621](https://peps.python.org/pep-0621/) it is allowed to have a section `[project.optional-dependencies]` in your `pyproject.toml` to specify things sometimes knows as extras. Your extension complains on this code ```toml [project] name...
If using an archive, opening with the module `zipfile` and trying to read data from one element of the archive, it is not working. For example reading xml-files with bs4...
**Documentation** Within the CLI we have the command line switch `--enable-incomplete-feature` which expects a feature name to enable. Until now I have not been able to find a list of...
Maybe you know sankey diagrams - a nice way to visualize flows.  There is already a textual syntax for describing such and it is even here ....