mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 05:24:53 +08:00
10 lines
253 B
Python
10 lines
253 B
Python
from typing import Dict
|
|
|
|
|
|
def get_internal_wsgi_application() -> object: ...
|
|
|
|
|
|
class WSGIRequestHandler:
|
|
def address_string(self) -> str: ...
|
|
def get_environ(self) -> Dict[str, str]: ...
|
|
def log_message(self, format: str, *args) -> None: ... |