diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-15 14:24:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-15 14:24:50 (GMT) |
commit | e929dae42ad6aaf55e5cce6339c1ef97c01c8f7b (patch) | |
tree | 4e2955f4ea208a15f64c222a9dd31bd44833e2f2 /Doc/library/sqlite3.rst | |
parent | 5dee1d840cefff2f4b81a89519ec7385e13dd72a (diff) | |
download | cpython-e929dae42ad6aaf55e5cce6339c1ef97c01c8f7b.zip cpython-e929dae42ad6aaf55e5cce6339c1ef97c01c8f7b.tar.gz cpython-e929dae42ad6aaf55e5cce6339c1ef97c01c8f7b.tar.bz2 |
gh-93857: Fix broken audit-event targets in sqlite3 docs (GH-93859)
Corrected targets for the following audit-events:
- sqlite3.enable_load_extension => sqlite3.Connection.enable_load_extension
- sqlite3.load_extension => sqlite3.Connection.load_extension
(cherry picked from commit ce4d11f98b30ec62f56a0653a212f0f78ca08b59)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r-- | Doc/library/sqlite3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 959a259..6e3f3cf 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -527,7 +527,7 @@ Connection Objects Loadable extensions are disabled by default. See [#f1]_. - .. audit-event:: sqlite3.enable_load_extension connection,enabled sqlite3.enable_load_extension + .. audit-event:: sqlite3.enable_load_extension connection,enabled sqlite3.Connection.enable_load_extension .. versionadded:: 3.2 @@ -544,7 +544,7 @@ Connection Objects Loadable extensions are disabled by default. See [#f1]_. - .. audit-event:: sqlite3.load_extension connection,path sqlite3.load_extension + .. audit-event:: sqlite3.load_extension connection,path sqlite3.Connection.load_extension .. versionadded:: 3.2 |