Skip to content
Prev Previous commit
Address review comment: Add bpo reference to __init__.py
Co-authored-by: Victor Stinner <vstinner@python.org>
  • Loading branch information
Erlend E. Aasland and vstinner committed Nov 6, 2020
commit fe7c65e76213f9b4565ef3eba37008e60f2d834f
4 changes: 2 additions & 2 deletions Lib/sqlite3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
from sqlite3.dbapi2 import *


# OptimizedUnicode was deprecated in Python 3.10. It's scheduled for removal
# in Python 3.12.
# bpo-42264: OptimizedUnicode was deprecated in Python 3.10. It's scheduled
# for removal in Python 3.12.
def __getattr__(name):
if name == "OptimizedUnicode":
import warnings
Expand Down