add _sqlite3 module (#11174)

This aligns with the implementation while giving greater fidelity
to runtime naming and inheritance

Related to https://github.com/python/typeshed/issues/3968 and https://github.com/python/typeshed/issues/11141
This commit is contained in:
Stephen Morton
2024-10-04 17:28:26 -07:00
committed by GitHub
parent 99095f5437
commit 39650b43b5
8 changed files with 1011 additions and 541 deletions

View File

@@ -27,3 +27,7 @@ email._header_value_parser.SPECIALSNL
email.errors.HeaderWriteError
email.utils.getaddresses
email.utils.parseaddr
# not available on python distributions compiled without sqlite3 loadable extension support
_sqlite3.Connection.load_extension
_sqlite3.Connection.enable_load_extension

View File

@@ -19,3 +19,7 @@ ossaudiodev
fcntl.F_OFD_GETLK
fcntl.F_OFD_SETLK
fcntl.F_OFD_SETLKW
# not available on python distributions compiled without sqlite3 loadable extension support
_sqlite3.Connection.load_extension
_sqlite3.Connection.enable_load_extension

View File

@@ -17,3 +17,7 @@ _?curses.window.get_wch
(_?locale.dgettext)?
(_?locale.gettext)?
(_?locale.textdomain)?
# not available on python distributions compiled without sqlite3 loadable extension support
_sqlite3.Connection.load_extension
_sqlite3.Connection.enable_load_extension