Skip to content

Commit 91afe66

Browse files
Docs: Escape lone stars in sqlite3 docs (#96081)
1 parent c87ea10 commit 91afe66

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Doc/library/sqlite3.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ Connection objects
555555
supplied, this must be a callable returning an instance of :class:`Cursor`
556556
or its subclasses.
557557

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

560560
Open a :class:`Blob` handle to an existing
561561
:abbr:`BLOB (Binary Large OBject)`.
@@ -625,7 +625,7 @@ Connection objects
625625
:meth:`~Cursor.executescript` on it with the given *sql_script*.
626626
Return the new cursor object.
627627

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

630630
Create or remove a user-defined SQL function.
631631

@@ -916,7 +916,7 @@ Connection objects
916916
con.close()
917917

918918

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

921921
Create a backup of an SQLite database.
922922

@@ -1028,7 +1028,7 @@ Connection objects
10281028
.. _SQLite limit category: https://www.sqlite.org/c3ref/c_limit_attached.html
10291029

10301030

1031-
.. method:: serialize(*, name="main")
1031+
.. method:: serialize(\*, name="main")
10321032

10331033
Serialize a database into a :class:`bytes` object. For an
10341034
ordinary on-disk database file, the serialization is just a copy of the
@@ -1050,7 +1050,7 @@ Connection objects
10501050
.. versionadded:: 3.11
10511051

10521052

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

10551055
Deserialize a :meth:`serialized <serialize>` database into a
10561056
:class:`Connection`.

0 commit comments

Comments
 (0)