Antoine Pitrou

Results 823 comments of Antoine Pitrou

As discussed on the GH issue, it would be useful to add a test using output from your machine as a reference. (also, perhaps open a separate PR with just...

Good luck with that, my attempts at reproducing while logging in using tmate actually failed here: https://github.com/apache/arrow/pull/40401

This is not how you would create a Map array with PyArrow. Example: ```python >>> ty = pa.map_(pa.int8(), pa.int32()) >>> a = pa.array([{1: 1000, 2: 10000}, {3: -1000}], type=ty) >>>...

More easily perhaps, you can use `gdb -p` to take control of a running process and debug it. lldb has [something similar](https://lldb.llvm.org/use/map.html#attach-to-the-process-with-process-id-123).

Thanks a lot @amoeba . It appears therefore that it is timing out when trying to join a thread using `Curl_thread_join`. This is quite unexpected, though there seems to be...

It would be nice if you could try again to catch another backtrace, so that we can see if it's always the same test timing out. If it is, we...

Even better: can you try getting a traceback _later_? It seems DNS resolution timeout on macOS is [30 seconds](https://discussions.apple.com/thread/254138037?sortBy=best).

Thoughts @felipecrv @mapleFU @wgtmac ?

> Perhaps we can add a `encoding_internal.h` file to hold those private but common stuff? We can, though I doubt there's much shared functionality.