-
### What
The ingredient analysis taxonomy is not properly loaded on Open Beauty Facts
### Web Screenshot
![image](https://user-images.githubusercontent.com/1689815/83349673-045db400-a337-11ea-954…
-
Hi @wesselb
I am testing out https://github.com/wesselb/plum/pull/73 due to the improved numpy support. In the very first example there, you show how to dispatch based on shape and type. In my use c…
-
-
The method `String getPluralForm(String word)` in class `com.sun.codemodel.JJavaName` uses case _insensitive_ patterns to map singular words to their plural form. Because of this, the plural of `Child…
-
Just to track this here as well. It seems texml sometimes converts colors incorrectly.
E.g., we had TeX sources with
```
\color{RoyalBlue}
\color{RedViolet}
\color{Plum}
\color{Gray}
```
…
-
Since you removed the CDDL+GPLv2 headers (and the commit message said they're no longer applicable), what license is Plummer distributed under?
As it stands, I'll have to assume it's copyrighted ("all…
-
From https://github.com/beartype/plum/issues/27#issuecomment-1927271932.
To reproduce:
```python
from collections.abc import Iterable
import plum
@plum.dispatch
def f(x: Iterable[int]): …
-
```python
import plum
@plum.dispatch
def f(x: list[int]): print("int!")
@plum.dispatch
def f(x: list[str]): print("str!")
@plum.dispatch
def f(x: list): print("other!")
f([1, "hi"])
`…
-
With the previous versions of plum and lab (`backends==1.4.32 plum-dispatch==1.7.4`), the following was a way in which one could register a new set of types for a function:
```python
import lab as…
-
I think this is a bug with plum, but perhaps its some other weird interaction, or just too new of beartype.
The gist is that I've been using @beartype for a while, and was trying to use plum to simpl…