Replies: 1 comment
-
|
Hey see the related issue and PR working on implementing this #2776 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
(Downstream of me trying to get annotations working on a project)
Imagine:
Type-theoretically,
Tag.objects.without_name()can only really resolve itself ifTag.objectsknows aboutTagQuerySet.But
django.models.manager.Manageronly has one generic variable, for the model type.With Python 3.13 and default generic args, it feels like we could get away with
Manager[M, QS], so that there's a bit more of a straight line to "how doesTag.objectsknow aboutwithout_name".Beta Was this translation helpful? Give feedback.
All reactions