diff options
author | Erlend E. Aasland <erlend.aasland@protonmail.com> | 2022-10-26 20:19:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 20:19:20 (GMT) |
commit | 4b41b11a63ad82b5cfd3c45b871295973982a3b0 (patch) | |
tree | 8e9d7695b40106a3bc2caa00138a631517eaad64 | |
parent | fd9bdde769f371f6824d6dbe724db4b3ba9831ad (diff) | |
download | cpython-4b41b11a63ad82b5cfd3c45b871295973982a3b0.zip cpython-4b41b11a63ad82b5cfd3c45b871295973982a3b0.tar.gz cpython-4b41b11a63ad82b5cfd3c45b871295973982a3b0.tar.bz2 |
[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 <erlend.aasland@protonmail.com>
-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 5f276c8..8573130 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. |