mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
gh-93370: Deprecate sqlite3.version and sqlite3.version_info (#93482)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
This commit is contained in:
parent
f8eae6f5c3
commit
ffc58a9710
7 changed files with 50 additions and 2 deletions
|
@ -25,6 +25,9 @@ import time
|
|||
import collections.abc
|
||||
|
||||
from _sqlite3 import *
|
||||
from _sqlite3 import _deprecated_version
|
||||
|
||||
_deprecated_names = frozenset({"version", "version_info"})
|
||||
|
||||
paramstyle = "qmark"
|
||||
|
||||
|
@ -45,7 +48,7 @@ def TimeFromTicks(ticks):
|
|||
def TimestampFromTicks(ticks):
|
||||
return Timestamp(*time.localtime(ticks)[:6])
|
||||
|
||||
version_info = tuple([int(x) for x in version.split(".")])
|
||||
_deprecated_version_info = tuple(map(int, _deprecated_version.split(".")))
|
||||
sqlite_version_info = tuple([int(x) for x in sqlite_version.split(".")])
|
||||
|
||||
Binary = memoryview
|
||||
|
@ -85,3 +88,12 @@ register_adapters_and_converters()
|
|||
# Clean up namespace
|
||||
|
||||
del(register_adapters_and_converters)
|
||||
|
||||
def __getattr__(name):
|
||||
if name in _deprecated_names:
|
||||
from warnings import warn
|
||||
|
||||
warn(f"{name} is deprecated and will be removed in Python 3.14",
|
||||
DeprecationWarning, stacklevel=2)
|
||||
return globals()[f"_deprecated_{name}"]
|
||||
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue