Collin Anderson

Results 17 comments of Collin Anderson

This is needed to support django 1.8.

Copying my comment here from https://github.com/django/django/pull/15456#discussion_r812393287: Maybe escape() gets called so much that it might be worth just hand-coding the `keep_lazy` code. There's only one arg to check. Maybe the...

Both commits visually look good to me.

Honestly, all I really need to know is how to import it. Currently the docs say there's a module that provides a drop-in replacement, but doesn't say what the name...

Right, yeah exactly. What you just said should probably be added to the readme and/or documentation.

I just tried `pip install 'channels[daphne]==4.0.0b1'` and it seemed to work fine for me and upgrade daphne. I got the warning when I put it below staticfiles and it went...

Here's flake8 4.0.1 on Python 3.9 checking the cpython main branch codebase: 64 batches per worker: 1m9.859s 32 batches per worker: 1m8.758s 16 batches per worker: 1m9.501s 8 batches per...

Yes, I see `imap_unordered` is now just using the default `chunksize` of 1 (one batch per file), which 100% fixes my issue of keeping workers balanced. As you say as...