Skip to content

Commit 78df56e

Browse files
gh-98716: Revert gh-96081: Escape lone stars in sqlite3 docs (GH-98720)
(cherry picked from commit 365852a) Co-authored-by: Erlend E. Aasland <[email protected]>
1 parent ca266aa commit 78df56e

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
@@ -564,7 +564,7 @@ Connection objects
564564
supplied, this must be a callable returning an instance of :class:`Cursor`
565565
or its subclasses.
566566

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

569569
Open a :class:`Blob` handle to an existing
570570
:abbr:`BLOB (Binary Large OBject)`.
@@ -634,7 +634,7 @@ Connection objects
634634
:meth:`~Cursor.executescript` on it with the given *sql_script*.
635635
Return the new cursor object.
636636

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

639639
Create or remove a user-defined SQL function.
640640

@@ -1027,7 +1027,7 @@ Connection objects
10271027
con.close()
10281028

10291029

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

10321032
Create a backup of an SQLite database.
10331033

@@ -1156,7 +1156,7 @@ Connection objects
11561156
.. _SQLite limit category: https://www.sqlite.org/c3ref/c_limit_attached.html
11571157

11581158

1159-
.. method:: serialize(\*, name="main")
1159+
.. method:: serialize(*, name="main")
11601160

11611161
Serialize a database into a :class:`bytes` object. For an
11621162
ordinary on-disk database file, the serialization is just a copy of the
@@ -1178,7 +1178,7 @@ Connection objects
11781178
.. versionadded:: 3.11
11791179

11801180

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

11831183
Deserialize a :meth:`serialized <serialize>` database into a
11841184
:class:`Connection`.

0 commit comments

Comments
 (0)