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
Next Next commit
Improve scope
  • Loading branch information
Erlend E. Aasland committed Jan 4, 2021
commit 97b04526082d110631db5038c480a30d399ec56b
2 changes: 1 addition & 1 deletion Lib/sqlite3/dbapi2.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ def convert_timestamp(val):

# bpo-24464: enable_shared_cache was deprecated in Python 3.10. It's
# scheduled for removal in Python 3.12.
from _sqlite3 import enable_shared_cache as _old_enable_shared_cache
def enable_shared_cache(enable):
Comment thread
erlend-aasland marked this conversation as resolved.
from _sqlite3 import enable_shared_cache as _old_enable_shared_cache
import warnings
msg = (
"enable_shared_cache is deprecated and will be removed in Python 3.12. "
Expand Down