Antoine Pitrou

Results 822 comments of Antoine Pitrou

Sorry, but what is "localhost:8000" here and how is it related to EC2 or Amazon?

Hmm, indeed. Is there a reason you want two builders on the same BB? (it should work fine on separate BBs, I think). Python lists are fast, it would be...

I see. Numba has a helper around that, we could fold it into llvmlite: https://github.com/numba/numba/blob/master/numba/cgutils.py#L162 (other helpers could probably be folded too, if desired)

I've just pushed a couple additional helpers in the IRBuilder class: see https://github.com/numba/llvmlite/blob/master/llvmlite/ir/builder.py#L98 (goto_block(), goto_entry_block(), if_then(), if_else())

Is your /tmp running out of free space perhaps?

Well, if you're willing to write an optimization pass yourself, you could indeed do it on text IR (or, rather, on the objects that create the text IR), although the...

You definitely need LLVM 3.6.x, a later version won't do. As for the first error you've got, I can't comment on it, as I don't use OS X. This seems...

Seconded. I can't understand any of this. For example auditwheel tells me this: ``` DEBUG:auditwheel.policy.versioned_symbols:Package requires GLIBCXX_3.4.21, incompatible with policy manylinux1_x86_64 which requires {'GLIBCXX_3.4.8', 'GLIBCXX_3.4.6', 'GLIBCXX_3.4.4', 'GLIBCXX_3.4.1', 'GLIBCXX_3.4.7', 'GLIBCXX_3.4.5', 'GLIBCXX_3.4.3',...

Also, if one tries to actually document the fields, e.g.: ```python _Foo = namedtuple("_Foo", "bar") class Foo(_Foo): """ A Foo. Attributes ---------- bar : str The bar contents of Foo....

Why isn't this still fixed? This sounds like a critical bug. We just got word that our users can be hit by it: https://issues.apache.org/jira/browse/ARROW-14523