Results 637 comments of Antony Lee

@xantares Can you clarify the conditions in which the build fails? I checked out cminpack before the merge of #21 and could build with -DUSE_CBLAS just fine on Arch and...

Ah, I see, it's basically https://gitlab.kitware.com/cmake/cmake/-/issues/19381 (i.e. blas!=cblas)? I guess the practical solution may be to just add more entries in the vendored FindCBLAS.cmake then :( ... or possibly just...

Not sure what's exactly happening in this case (especially, I don't know how cffi does its thing), but for https://github.com/anntzer/mplcairo where I have an extension that needs to load symbols...

This is what uname -a gives me: ``` Linux antony1 4.18.16-1-ck-haswell #1 SMP PREEMPT Sat Oct 20 08:21:44 EDT 2018 x86_64 GNU/Linux ``` Admittedly the situation is a bit confusing...

fwiw it looks like `functools.partial` and `urllib.parse` have been taken care of? ``` In [1]: functools.partial(lambda x: x, y=1) Out[1]: functools.partial( , # function 1, y=1 ) In [2]: urllib.parse.urlsplit("http://www.google.com")...

After some more investigation, looks like the desired result (forcing a newline before the dtype if the array repr goes over multiple lines) can be achieved with ```patch diff --git...

Thanks for the detailed writeup, I got to some reasonably working version in #50. Personally, I'm not too bothered by the lack of coloring for the numbers -- for a...

I can have a look, but that would require a minimal repro example (a module to be autodoc'ed and a sphinx project).

OK, I really thought that was such an obvious thing to do that I must have had missed a good reason :-) For example, is there a way to ensure...