Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Update _sqlite3.pyi
Co-authored-by: Brian Schubert <[email protected]>
  • Loading branch information
donbarbos and brianschubert authored Mar 29, 2026
commit 020f095397eb29944b61974028b321723b4bf1b1
5 changes: 4 additions & 1 deletion stdlib/_sqlite3.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,10 @@ def enable_callback_tracebacks(enable: bool, /) -> None: ...

if sys.version_info < (3, 12):
# takes a pos-or-keyword argument because there is a C wrapper
@deprecated("Deprecated since Python 3.10; removed in Python 3.12.")
@deprecated(
"Deprecated since Python 3.10; removed in Python 3.12. "
"Open database in URI mode using `cache=shared` parameter instead."
)
def enable_shared_cache(do_enable: int) -> None: ... # undocumented

if sys.version_info >= (3, 10):
Expand Down
Loading