Nathan Goldbaum
Nathan Goldbaum
Sorry to send you on a goose chase. Here's the SciPy PR with unexplained musllinux 3.14 crashes: https://github.com/scipy/scipy/pull/23187
@kumaraditya303 pointed me at https://github.com/python/cpython/issues/131338
Hmm, can we actually use `try_fold`? I tried to write an implementation for `PyList` and I think in order to actually implement it, you need to use the `Try` trait,...
https://github.com/PyO3/pyo3/pull/4439 did this for dict, but we should do this for list as well.
I'm finally getting around to implementing this for list, following the example for dict. Should have a PR ready in the next day or two.
see https://github.com/PyO3/pyo3/pull/4789
@jimkring thanks for this! @indygreg do you think you'd be willing to publish free-threaded wheels for zstandard (assuming there are no thread-safety issues you're aware of)? You can follow https://py-free-threading.github.io/porting/...
> Is there any blocker other than using Py_REFCNT? I did a short grep through the codebase and don't see any obvious issues in the C extensions like mutable static...
I'll try to take a look at that failing test this week. There is active work going on to get cffi working - it's a headache elsewhere too (cryptography and...
See #243 which attempts to fix this by raising an error if someone attempts to share compressors or decompressors.