summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/sqlite3.rst4
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.