mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-18 01:45:59 +08:00
initial commit
This commit is contained in:
10
django/db/backends/sqlite3/creation.pyi
Normal file
10
django/db/backends/sqlite3/creation.pyi
Normal file
@@ -0,0 +1,10 @@
|
||||
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]: ...
|
||||
Reference in New Issue
Block a user