forked from typeddjango/django-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add QuerySetAny as a non-generic variant of QuerySet.
This also re-export `QuerySetAny` for external access to nongeneric QuerySet. The approach taken here is making `_QuerySetAny` an alias of `_QuerySet[_T, _T]` dedicated for isinstance checks, and leave `QuerySet` unchanged as the type alias of `_QuerySet[_T, _T]`. Fixes typeddjango#704. Signed-off-by: Zixuan James Li <p359101898@gmail.com>
- Loading branch information
Showing
5 changed files
with
77 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
import typing | ||
|
||
if typing.TYPE_CHECKING: | ||
from django.db.models.query import _T, _QuerySet, _Row | ||
from django.db.models.query import _T, _QuerySet, _QuerySetAny, _Row | ||
from django.utils.functional import _StrOrPromise as StrOrPromise | ||
from django.utils.functional import _StrPromise as StrPromise | ||
|
||
QuerySetAny = _QuerySetAny | ||
ValuesQuerySet = _QuerySet[_T, _Row] | ||
else: | ||
from django.db.models.query import QuerySet | ||
from django.utils.functional import Promise as StrPromise | ||
|
||
QuerySetAny = QuerySet | ||
ValuesQuerySet = QuerySet | ||
StrOrPromise = typing.Union[str, StrPromise] | ||
|
||
__all__ = ["StrOrPromise", "StrPromise", "ValuesQuerySet"] | ||
__all__ = ["StrOrPromise", "StrPromise", "QuerySetAny", "ValuesQuerySet"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
- case: queryset_isinstance_check | ||
main: | | ||
from typing import Any | ||
from django.db.models.query import QuerySet | ||
from django_stubs_ext import QuerySetAny | ||
def foo(q: QuerySet[Any]) -> None: | ||
pass | ||
def bar(q: QuerySetAny) -> None: | ||
pass | ||
def baz(obj: object) -> None: | ||
if isinstance(obj, QuerySetAny): | ||
reveal_type(obj) # N: Revealed type is "django.db.models.query._QuerySet[Any, Any]" | ||
foo(obj) | ||
bar(obj) | ||
if isinstance(obj, QuerySet): # E: Parameterized generics cannot be used with class or instance checks | ||
reveal_type(obj) # N: Revealed type is "django.db.models.query._QuerySet[Any, Any]" | ||
foo(obj) | ||
bar(obj) | ||
- case: queryset_list | ||
main: | | ||
from typing import List | ||
from django.db.models.query import QuerySet | ||
from django_stubs_ext import QuerySetAny | ||
from myapp.models import User, Book | ||
def try_append(queryset_instance: QuerySetAny, queryset: QuerySet[User], queryset_book: QuerySet[Book]) -> None: | ||
user_querysets: List[QuerySet[User]] = [] | ||
user_querysets.append(queryset_instance) | ||
user_querysets.append(queryset) | ||
user_querysets.append(queryset_book) # E: Argument 1 to "append" of "list" has incompatible type "_QuerySet[Book, Book]"; expected "_QuerySet[User, User]" | ||
installed_apps: | ||
- myapp | ||
files: | ||
- path: myapp/__init__.py | ||
- path: myapp/models.py | ||
content: | | ||
from django.db import models | ||
class User(models.Model): | ||
pass | ||
class Book(models.Model): | ||
pass |