palkeo
palkeo
I had to implement read_items/write_items given that this size of integers is not supported by Python's struct. Not sure it's ideal to have these new types transitively inherit from FormatColumn,...
`SimpleAggregateFunction(something, Tuple(String, String))` would trigger that bug as the `inner` variable would be `Tuple(String`. This fixes it by splitting only on the first comma that it encounters. I assume there...
This is an alternative proposal to my other PR. It's a bit more internal changes, but it's 10x faster than my other PR for copying, making it 100x faster than...
Hey, I noticed that when I use `pqdict.copy()` to copy over a `pqdict`, it's abnormally slow. I was able to track it down to the fact that `copy()` calls `__init__`,...
Hi ! I think I found a deadlock in the library. It happens when using trio, when iterating over the changes to a table. If the connexion is closed an...
See this PR for context: https://github.com/python-trio/trio-websocket/pull/185
The default size of 4 KiB is very small, and caused a lot of loops receiving buffers, that were clearly visible in benchmarks. Also, it's not needed: ` Optional; if...