From: Erlend E. Aasland Date: Thu, 18 Aug 2022 20:27:51 +0000 (+0200) Subject: [3.10] Docs: Escape lone stars in sqlite3 docs (GH-96081). (#96085) X-Git-Tag: v3.10.7~56 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb182fe9eb171fd01ab59deaa9f1e4bfcce57748;p=thirdparty%2FPython%2Fcpython.git [3.10] Docs: Escape lone stars in sqlite3 docs (GH-96081). (#96085) (cherry picked from commit 91afe66707237558d808aeca4683d0822aa0511e) Co-authored-by: Erlend E. Aasland --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 10a7d39fd0e1..e5ddf61f7adf 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.