mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-17 01:07:12 +08:00
6 lines
296 B
Python
6 lines
296 B
Python
class BaseEmailBackend:
|
|
def __enter__(self) -> BaseEmailBackend: ...
|
|
def __exit__(self, exc_type: None, exc_value: None, traceback: None) -> None: ...
|
|
def __init__(self, fail_silently: bool = ..., **kwargs) -> None: ...
|
|
def close(self) -> None: ...
|
|
def open(self) -> None: ... |