From: Erlend E. Aasland Date: Wed, 26 Oct 2022 20:19:20 +0000 (+0200) Subject: [3.10] gh-98716: Revert gh-96081: Escape lone stars in sqlite3 docs (GH-98720) (... X-Git-Tag: v3.10.9~118 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b41b11a63ad82b5cfd3c45b871295973982a3b0;p=thirdparty%2FPython%2Fcpython.git [3.10] gh-98716: Revert gh-96081: Escape lone stars in sqlite3 docs (GH-98720) (#98737) (cherry picked from commit 365852a03a0c934ccd9b6c2b8e24c71181c41f03) Co-authored-by: Erlend E. Aasland --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 5f276c8d8e68..8573130536bd 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -557,7 +557,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. @@ -855,7 +855,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.