]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix misaligned versionchanged blocks in sqlite3 docs (GH-110191)
authorNed Batchelder <ned@nedbatchelder.com>
Mon, 2 Oct 2023 03:34:09 +0000 (23:34 -0400)
committerGitHub <noreply@github.com>
Mon, 2 Oct 2023 03:34:09 +0000 (20:34 -0700)
Doc/library/sqlite3.rst

index 0abdab52340dfdcd4c5f236deae570aaff04ffdc..7b8c7810165164b6dd7b8b6ca664487a6a0ed463 100644 (file)
@@ -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, /)