Skip to content

Commit 1683261

Browse files
committed
Merge branch 'sqlite' of https://github.com/Wulian233/cpython into sqlite
2 parents d727e36 + c6ca677 commit 1683261

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Lib/sqlite3/dbapi2.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import collections.abc
2424
import datetime
2525

26-
from _sqlite3 import Row, sqlite_version
26+
from _sqlite3 import *
2727

2828
paramstyle = "qmark"
2929

@@ -54,7 +54,6 @@ def TimestampFromTicks(ticks):
5454
collections.abc.Sequence.register(Row)
5555

5656
def register_adapters_and_converters():
57-
from _sqlite3 import register_adapter, register_converter
5857
from warnings import warn
5958

6059
msg = ("The default {what} is deprecated as of Python 3.12; "

0 commit comments

Comments
 (0)