mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-11 14:31:56 +08:00
13 lines
308 B
Python
13 lines
308 B
Python
from sqlite3 import dbapi2 as Database
|
|
from typing import Any, Callable
|
|
|
|
from django.db.backends.base.base import BaseDatabaseWrapper
|
|
|
|
def decoder(conv_func: Callable) -> Callable: ...
|
|
|
|
class DatabaseWrapper(BaseDatabaseWrapper): ...
|
|
|
|
FORMAT_QMARK_REGEX: Any
|
|
|
|
class SQLiteCursorWrapper(Database.Cursor): ...
|