8000
We read every piece of feedback, and take your input very seriously.
1 parent 5e74bad commit 365852aCopy full SHA for 365852a
Doc/library/sqlite3.rst
@@ -577,7 +577,7 @@ Connection objects
577
supplied, this must be a callable returning an instance of :class:`Cursor`
578
or its subclasses.
579
580
- .. method:: blobopen(table, column, row, /, \*, readonly=False, name="main")
+ .. method:: blobopen(table, column, row, /, *, readonly=False, name="main")
581
582
Open a :class:`Blob` handle to an existing
583
:abbr:`BLOB (Binary Large OBject)`.
@@ -647,7 +647,7 @@ Connection objects
647
:meth:`~Cursor.executescript` on it with the given *sql_script*.
648
Return the new cursor object.
649
650
- .. method:: create_function(name, narg, func, \*, deterministic=False)
+ .. method:: create_function(name, narg, func, *, deterministic=False)
651
652
Create or remove a user-defined SQL function.
653
@@ -1040,7 +1040,7 @@ Connection objects
1040
con.close()
1041
1042
1043
- .. method:: backup(target, \*, pages=-1, progress=None, name="main", sleep=0.250)
+ .. method:: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250)
1044
1045
Create a backup of an SQLite database.
1046
@@ -1169,7 +1169,7 @@ Connection objects
1169
.. _SQLite limit category: https://www.sqlite.org/c3ref/c_limit_attached.html
1170
1171
1172
- .. method:: serialize(\*, name="main")
+ .. method:: serialize(*, name="main")
1173
1174
Serialize a database into a :class:`bytes` object. For an
1175
ordinary on-disk database file, the serialization is just a copy of the
@@ -1191,7 +1191,7 @@ Connection objects
1191
.. versionadded:: 3.11
1192
1193
1194
- .. method:: deserialize(data, /, \*, name="main")
+ .. method:: deserialize(data, /, *, name="main")
1195
1196
Deserialize a :meth:`serialized <serialize>` database into a
1197
:class:`Connection`.