Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion stdlib/sqlite3/dbapi2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ from sqlite3 import (
Warning as Warning,
)
from typing import Literal
from typing_extensions import deprecated

if sys.version_info >= (3, 12):
from _sqlite3 import (
Expand Down Expand Up @@ -215,7 +216,7 @@ if sys.version_info < (3, 14):

if sys.version_info < (3, 12):
if sys.version_info >= (3, 10):
# deprecation wrapper that has a different name for the argument...
@deprecated("Deprecated since 3.10; removed in Python 3.12.")
def enable_shared_cache(enable: int) -> None: ...
else:
from _sqlite3 import enable_shared_cache as enable_shared_cache
Expand Down
Loading