]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.10] Docs: Escape lone stars in sqlite3 docs (GH-96081). (#96085)
authorErlend E. Aasland <erlend.aasland@protonmail.com>
Thu, 18 Aug 2022 20:27:51 +0000 (22:27 +0200)
committerGitHub <noreply@github.com>
Thu, 18 Aug 2022 20:27:51 +0000 (22:27 +0200)
(cherry picked from commit 91afe66707237558d808aeca4683d0822aa0511e)

Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Doc/library/sqlite3.rst

index 10a7d39fd0e175b2de2ca1600040d9a985ddc291..e5ddf61f7adf5fc741ce28c746318a867470d8a7 100644 (file)
@@ -540,7 +540,7 @@ Connection objects
       :meth:`~Cursor.executescript` on it with the given *sql_script*.
       Return the new cursor object.
 
-   .. method:: create_function(name, narg, func, *, deterministic=False)
+   .. method:: create_function(name, narg, func, \*, deterministic=False)
 
       Create or remove a user-defined SQL function.
 
@@ -784,7 +784,7 @@ Connection objects
          con.close()
 
 
-   .. method:: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250)
+   .. method:: backup(target, \*, pages=-1, progress=None, name="main", sleep=0.250)
 
       Create a backup of an SQLite database.