David Hewitt
David Hewitt
PyTorch bug listed above is resolved and I guess will be in the next release (current version is 2.9.1, so maybe 2.9.2 will be sufficient?)
Thanks for the report, this is a tough one to judge. I think we are mostly correct to continue to use `OverflowError` here, as even new CPython APIs added in...
We are built atop those same CPython APIs which raise `OverflowError`, which is why the current behaviour exists. If there was a strong reason to make the change, we could...
Thank you for the thorough analysis. > Typically I came across this issue by implementing a business logic type with PyO3 that is used in a validation lib (Pydantic) within...
Try merging with main? Probably operating on a merge commit 🤔
Hmm, I will try to help investigate ASAP, probably Wednesday. This is probably good reason to delay #5646 just in case it needs a patch to the existing code.
> Hmm, I will try to help investigate ASAP, probably Wednesday. This is probably good reason to delay #5646 just in case it needs a patch to the existing code....
From examining valgrind output, it seems to me that we have an issue where the PyPy GC is attempting to interact with the dict subclass after it's been deallocated. Presumably...
#5653 fixes 🎉
Sorry to have been a little slow to get around to joining the discussion on this PR, so many parallel threads at the moment 😩 Thanks very much for working...