Raphael Gaschignard
Raphael Gaschignard
Here's a Hypothesis test script that tests the current code against the old code, finding a good amount of changes: ``` # /// script # dependencies = [ # "hypothesis",...
With the above found the following kind of errors: - `;0` parsed as `('', {})` in the old, `('', {'0': {}})` in the new - `=` parsed as `('=', {})`...
looks good to me 👍
Two other things: - Going to try my codegen idea based off of this branch - Is there a way to do this work in a separate tree I wonder?...
@fcurella would you be able to allow pull requests off of your repo? I think it would be easier to show my codegen off of that. Anyways... I got codegen...
(EDIT: While reading DEP0009 over again I realized my issue is its own thing. Please feel free to ignore this comment thread. Main confusion was in how it's actually expected...
OK the thing going on here was much more straightforward: `BaseConnectionHandler` (The handler for `connections`) uses an `asgiref.local.Local` to hold onto its connections. When we go into a task, the...
> If understand correctly the issue: once you're inside an async_to_sync, you're in a different thread, and from inside that thread there's no visibility of pre-existing connections created by ConnectionHandler...
One gnarly idea I had while sleeping on this idea (at least for postgres): for a given backend, when I open a new connection with `async with new_connection():, I assign...
Thanks for the PR! I made some changes to simplify the management command and make it explicit that the ordering is always by `pk` (though that's a bit spurious given...