Files
django-stubs/django/db/backends/sqlite3/creation.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

10 lines
407 B
Python

from typing import Tuple
class DatabaseCreation:
def _create_test_db(self, verbosity: int, autoclobber: bool, keepdb: bool = ...) -> str: ...
def _destroy_test_db(self, test_database_name: str, verbosity: int) -> None: ...
def _get_test_db_name(self) -> str: ...
@staticmethod
def is_in_memory_db(database_name: str) -> bool: ...
def test_db_signature(self) -> Tuple[str, str]: ...