Skip to content

Commit f0a0412

Browse files
Docs: escape lone stars in sqlite3 docs
1 parent 586fc02 commit f0a0412

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
@@ -467,7 +467,7 @@ Connection objects
467467
supplied, this must be a callable returning an instance of :class:`Cursor`
468468
or its subclasses.
469469

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

472472
Open a :class:`Blob` handle to an existing
473473
:abbr:`BLOB (Binary Large OBject)`.
@@ -537,7 +537,7 @@ Connection objects
537537
:meth:`~Cursor.executescript` on it with the given *sql_script*.
538538
Return the new cursor object.
539539

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

542542
Create or remove a user-defined SQL function.
543543

@@ -828,7 +828,7 @@ Connection objects
828828
con.close()
829829

830830

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

833833
Create a backup of an SQLite database.
834834

@@ -940,7 +940,7 @@ Connection objects
940940
.. _SQLite limit category: https://www.sqlite.org/c3ref/c_limit_attached.html
941941

942942

943-
.. method:: serialize(*, name="main")
943+
.. method:: serialize(\*, name="main")
944944

945945
Serialize a database into a :class:`bytes` object. For an
946946
ordinary on-disk database file, the serialization is just a copy of the
@@ -962,7 +962,7 @@ Connection objects
962962
.. versionadded:: 3.11
963963

964964

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

967967
Deserialize a :meth:`serialized <serialize>` database into a
968968
:class:`Connection`.

0 commit comments

Comments
 (0)