summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/sqlite3/__init__.py')
-rw-r--r--Lib/sqlite3/__init__.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/Lib/sqlite3/__init__.py b/Lib/sqlite3/__init__.py
index 927267c..34a9c04 100644
--- a/Lib/sqlite3/__init__.py
+++ b/Lib/sqlite3/__init__.py
@@ -55,16 +55,3 @@ The sqlite3 module is written by Gerhard Häring <gh@ghaering.de>.
"""
from sqlite3.dbapi2 import *
-from sqlite3.dbapi2 import (_deprecated_names,
- _deprecated_version_info,
- _deprecated_version)
-
-
-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}")