diff options
author | Erlend E. Aasland <erlend.aasland@protonmail.com> | 2023-04-26 19:22:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-26 19:22:03 (GMT) |
commit | 222c63fc6b91f42e7cc53574615f4e9b7a33c28f (patch) | |
tree | 92bc902ce83e10b4fcad67cccfa292e3851a98c0 /Doc/whatsnew | |
parent | 28a05f4cc2b150b3ff02ec255daf1b6ec886ca6f (diff) | |
download | cpython-222c63fc6b91f42e7cc53574615f4e9b7a33c28f.zip cpython-222c63fc6b91f42e7cc53574615f4e9b7a33c28f.tar.gz cpython-222c63fc6b91f42e7cc53574615f4e9b7a33c28f.tar.bz2 |
gh-103015: Add entrypoint keyword param to sqlite3.Connection.load_extension (#103073)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index 9a32f98..9d79430 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -406,6 +406,11 @@ sqlite3 :ref:`transaction handling <sqlite3-transaction-control-autocommit>`. (Contributed by Erlend E. Aasland in :gh:`83638`.) +* Add *entrypoint* keyword-only parameter to + :meth:`~sqlite3.Connection.load_extension`, + for overriding the SQLite extension entry point. + (Contributed by Erlend E. Aasland in :gh:`103015`.) + threading --------- |