QuerySets with extra arguments will not error when called as long as they
have defaults.
--
Ticket URL: <https://code.djangoproject.com/ticket/32784>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* resolution: => wontfix
Comment:
The property here is intended to work with
[https://docs.djangoproject.com/en/3.2/ref/models/querysets#django.db.models.query.QuerySet.count
QuerySet.count] (and anything that quacks like it). Adjusting that isn't
going to be worth the complication.
The approach would be to subclass `Paginator` in your project to allow
handling your custom `count()` (with arguments) variation.
--
Ticket URL: <https://code.djangoproject.com/ticket/32784#comment:1>
* type: Uncategorized => New feature
--
Ticket URL: <https://code.djangoproject.com/ticket/32784#comment:2>