diff options
author | Erlend E. Aasland <erlend.aasland@protonmail.com> | 2022-08-18 20:27:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-18 20:27:51 (GMT) |
commit | eb182fe9eb171fd01ab59deaa9f1e4bfcce57748 (patch) | |
tree | 9f09c3f8f9b92e823bb057ed64aa667fb052f63d /Doc/library | |
parent | 882dd9fe0da726bb01627dc215352ba94551f3c9 (diff) | |
download | cpython-eb182fe9eb171fd01ab59deaa9f1e4bfcce57748.zip cpython-eb182fe9eb171fd01ab59deaa9f1e4bfcce57748.tar.gz cpython-eb182fe9eb171fd01ab59deaa9f1e4bfcce57748.tar.bz2 |
[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@protonmail.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/sqlite3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 10a7d39..e5ddf61 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. |