diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2023-10-02 03:34:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-02 03:34:09 (GMT) |
commit | 29c3a445d99f7e29086f6fdc4612e200cbbdc0ff (patch) | |
tree | b4bb6096a4e8bb0fdb0b8058fc569ecde0761adc /Doc/library | |
parent | 65c285062ce2769249610348636d3d73153e0144 (diff) | |
download | cpython-29c3a445d99f7e29086f6fdc4612e200cbbdc0ff.zip cpython-29c3a445d99f7e29086f6fdc4612e200cbbdc0ff.tar.gz cpython-29c3a445d99f7e29086f6fdc4612e200cbbdc0ff.tar.bz2 |
fix misaligned versionchanged blocks in sqlite3 docs (GH-110191)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/sqlite3.rst | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 0abdab5..7b8c781 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -992,9 +992,8 @@ Connection objects Added support for disabling the authorizer using ``None``. .. versionchanged:: 3.13 - - Passing *authorizer_callback* as a keyword argument to is deprecated. - The parameter will become positional-only in Python 3.15. + Passing *authorizer_callback* as a keyword argument is deprecated. + The parameter will become positional-only in Python 3.15. .. method:: set_progress_handler(progress_handler, n) @@ -1012,9 +1011,8 @@ Connection objects exception. .. versionchanged:: 3.13 - - Passing *progress_handler* as a keyword argument to is deprecated. - The parameter will become positional-only in Python 3.15. + Passing *progress_handler* as a keyword argument is deprecated. + The parameter will become positional-only in Python 3.15. .. method:: set_trace_callback(trace_callback) @@ -1041,9 +1039,8 @@ Connection objects .. versionadded:: 3.3 .. versionchanged:: 3.13 - - Passing *trace_callback* as a keyword argument to is deprecated. - The parameter will become positional-only in Python 3.15. + Passing *trace_callback* as a keyword argument is deprecated. + The parameter will become positional-only in Python 3.15. .. method:: enable_load_extension(enabled, /) |