Kevin Turcios
Kevin Turcios
> @KRRT7 Committed some code. Could you please pull and try again? thanks, it works fine now, is there an example somewhere of a successful building such code into an...
> There is a very old (2002) Debian bug reporting that statically linking libpython is good for performance: https://bugs.debian.org/131813 I wanted to note that statically linking lib python has yielded...
`textual>=6.6.0` and yes the correct interpreter is selected, the ty extension displays these properly.
sure, I can do that on Monday, I switched to Ty for the meantime
``` import numpy as np def dot_product(a: np.ndarray, b: np.ndarray) -> float: if len(a) != len(b): raise ValueError("Vectors must have the same length") result = 0 for i in range(len(a)):...
this still happens very frequently, it's becoming annoying.
the PSF is switching over from having windows store python to an installation manager on windows, support will eventually need to be added for that also
https://www.python.org/downloads/release/pymanager-250/
@DABND19 could you take a look? thanks
Created associated issue: #14748 The review feedback has been addressed: - Removed AI noise comment - Removed unnecessary `ignore_set` variable - Kept dataclass (faster than NamedTuple per @hoxbro's benchmark) -...