Skip to content

Commit e8e3fe9

Browse files
Docs: Escape lone stars in sqlite3 docs (GH-96081)
(cherry picked from commit 91afe66) Co-authored-by: Erlend E. Aasland <[email protected]>
1 parent 972150b commit e8e3fe9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Doc/library/sqlite3.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ Connection objects
542542
supplied, this must be a callable returning an instance of :class:`Cursor`
543543
or its subclasses.
544544

545-
.. method:: blobopen(table, column, row, /, *, readonly=False, name="main")
545+
.. method:: blobopen(table, column, row, /, \*, readonly=False, name="main")
546546

547547
Open a :class:`Blob` handle to an existing
548548
:abbr:`BLOB (Binary Large OBject)`.
@@ -612,7 +612,7 @@ Connection objects
612612
:meth:`~Cursor.executescript` on it with the given *sql_script*.
613613
Return the new cursor object.
614614

615-
.. method:: create_function(name, narg, func, *, deterministic=False)
615+
.. method:: create_function(name, narg, func, \*, deterministic=False)
616616

617617
Create or remove a user-defined SQL function.
618618

@@ -903,7 +903,7 @@ Connection objects
903903
con.close()
904904

905905

906-
.. method:: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250)
906+
.. method:: backup(target, \*, pages=-1, progress=None, name="main", sleep=0.250)
907907

908908
Create a backup of an SQLite database.
909909

@@ -1015,7 +1015,7 @@ Connection objects
10151015
.. _SQLite limit category: https://www.sqlite.org/c3ref/c_limit_attached.html
10161016

10171017

1018-
.. method:: serialize(*, name="main")
1018+
.. method:: serialize(\*, name="main")
10191019

10201020
Serialize a database into a :class:`bytes` object. For an
10211021
ordinary on-disk database file, the serialization is just a copy of the
@@ -1037,7 +1037,7 @@ Connection objects
10371037
.. versionadded:: 3.11
10381038

10391039

1040-
.. method:: deserialize(data, /, *, name="main")
1040+
.. method:: deserialize(data, /, \*, name="main")
10411041

10421042
Deserialize a :meth:`serialized <serialize>` database into a
10431043
:class:`Connection`.

0 commit comments

Comments
 (0)