Antony Lee
Antony Lee
Passing common arguments before the subcommand is an interesting idea. Can you be more explicit as to the API you propose, though?
Similarly, perhaps trizen could remove from the directory any file not listed in the sources array (and != PKGBUILD, of course) before starting the build. The motivation is different, though:...
Here's another self-contained repro to trigger the warning: ```python import numpy as np from joblib import Memory mem = Memory("/tmp/joblib-cache") @mem.cache def func(x): return np.mean(x) np.random.randn(int(1e8)).tofile("/tmp/rand.bin") # adjust size accordingly...
That was just a simple repro; my actual use case was only *slightly* more complicated: it was computing the median along one axis of a large 2D array, and in...
I had a quick look at the code. It looks like you first call the memoized function, then serialize the input hashes and the output, and if that serialization step...
Ah, it's nice to see the list here, thanks for the quick reply. Perhaps that whitelist could be made user-configurable? I was specifically looking for PyOS_string_to_double (to figure out whether...
FWIW I ended up using a patched version of py-spy with just whatever entries I needed in WHITELISTED_PREFIXES (thanks for pointing it out, it's been very helpful), but being able...
It's mostly just that Matplotlib's current contouring code has some defects wrt. the way the breaks in the contour are determined (on the image on the left (which I guess...
Yes, that looks good. The point about using mathtext (even manually, if you prefer) remains, though. Other than that, feel free to close this.