David Hewitt
David Hewitt
It looks to me like `PyReadonlyArray` implements `Deref` to `Bound
You can presumably also do something like `(*readonly_array).to_object()` to avoid the need to wait for a release.
Ah sorry, this is entirely my mistake causing the confusion. We used to set the flag, but after the borrow strategy was changed in #258 we stopped doing that. In...
Sounds good to me, thanks 👍
I think so, yes. Will close.
> and i humby ask it to be an requrement (but if imposible drop it) > since calling same code with same data on different day may get different serialized...
I think what we should do is support [RFC 9557](https://www.rfc-editor.org/rfc/rfc9557.html#name-examples). It looks like the correct thing to do is to serialize the UTC offset as it was at that instant,...
I've revisited this extensively today and am less sure this is a bug. Python `datetime` behaves the same way: ```python >>> from datetime import time, timezone, timedelta >>> from zoneinfo...
Hmm, looks like this needs another pass. Will investigate later.
This now works, and it also fixes the bug, but I'm not sure it's really any simpler. To make things hang together I had to rework all serializer calls inside...