Kyle Barron

Results 1646 comments of Kyle Barron

My general position is that PyCapsule Interface producers should not make it unintentionally easy to force memory copies. So if a pandas series could be either chunked or non-chunked, then...

You should inspect the traceback inside the generated `parquet_wasm_bg.js`, and perhaps put a breakpoint in the `WebAssembly.instantiate` call. Presumably the way you're passing in a local URL isn't supported by...

> On the maintainer side - this, added to the exports section of a wasm-packed JS library (that does the triple-build thing we do here), would be reasonable: I'd be...

You want to use the `esm` entry point with vite, not the `bundler` entry point

Just popping in to say that the DataFrame interchange protocol seems to have stalled, and _especially_ when you use Arrow internally (as it seems jupyter-scatter does) it is much simpler...

FWIW I had to do the same thing in https://github.com/kylebarron/geo-index/pull/57 and I think `std::slice::from_raw_parts` is a bit cleaner than a transmute. The transmute relies on `#[repr(transparent)]`, which feels a bit...

Hmm. Is this worry specifically around not holding the GIL while accessing the slices? I later read the code more and saw that `PyBuffer::as_slice` uses the same `std::slice::from_raw_parts`, just wraps...

The CI only checks that there's a single newline at the end of each file, and that there are no superfluous whitespace characters at the end of each line. If...

I added license fields and updated to arro3 0.3.0.

Added to changelog!