[Python-checkins] [3.10] Docs: Escape lone stars in sqlite3 docs (GH-96081). (#96085)

erlend-aasland webhook-mailer at python.org
Thu Aug 18 16:28:07 EDT 2022


https://github.com/python/cpython/commit/eb182fe9eb171fd01ab59deaa9f1e4bfcce57748
commit: eb182fe9eb171fd01ab59deaa9f1e4bfcce57748
branch: 3.10
author: Erlend E. Aasland <erlend.aasland at protonmail.com>
committer: erlend-aasland <erlend.aasland at protonmail.com>
date: 2022-08-18T22:27:51+02:00
summary:

[3.10] Docs: Escape lone stars in sqlite3 docs (GH-96081). (#96085)

(cherry picked from commit 91afe66707237558d808aeca4683d0822aa0511e)

Co-authored-by: Erlend E. Aasland <erlend.aasland at protonmail.com>

files:
M Doc/library/sqlite3.rst

diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 10a7d39fd0e..e5ddf61f7ad 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -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.
 



More information about the Python-checkins mailing list