We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
runserver
1 parent 2a6f464 commit 8265075Copy full SHA for 8265075
django-stubs/core/management/commands/runserver.pyi
@@ -1,7 +1,15 @@
1
+from typing import Any, Type
2
+
3
+from django.core.handlers.wsgi import WSGIHandler
4
from django.core.management.base import BaseCommand
5
+from django.core.servers.basehttp import WSGIServer
6
7
class Command(BaseCommand):
8
default_addr: str = ...
9
default_addr_ipv6: str = ...
10
default_port: str = ...
11
protocol: str = ...
12
+ server_cls: Type[WSGIServer] = ...
13
+ def run(self, **options: Any) -> None: ...
14
+ def get_handler(self, *args: Any, **options: Any) -> WSGIHandler: ...
15
+ def inner_run(self, *args: Any, **options: Any) -> None: ...
0 commit comments