Skip to content

Commit

Permalink
pythongh-98716: Revert pythongh-96081: Escape lone stars in sqlite3 docs
Browse files Browse the repository at this point in the history
This reverts commit 91afe66.
  • Loading branch information
erlend-aasland committed Oct 26, 2022
1 parent de69816 commit 5b7b058
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ Connection objects
supplied, this must be a callable returning an instance of :class:`Cursor`
or its subclasses.

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

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

.. method:: create_function(name, narg, func, \*, deterministic=False)
.. method:: create_function(name, narg, func, *, deterministic=False)

Create or remove a user-defined SQL function.

Expand Down Expand Up @@ -1040,7 +1040,7 @@ Connection objects
con.close()


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

Create a backup of an SQLite database.

Expand Down Expand Up @@ -1169,7 +1169,7 @@ Connection objects
.. _SQLite limit category: https://www.sqlite.org/c3ref/c_limit_attached.html


.. method:: serialize(\*, name="main")
.. method:: serialize(*, name="main")

Serialize a database into a :class:`bytes` object. For an
ordinary on-disk database file, the serialization is just a copy of the
Expand All @@ -1191,7 +1191,7 @@ Connection objects
.. versionadded:: 3.11


.. method:: deserialize(data, /, \*, name="main")
.. method:: deserialize(data, /, *, name="main")

Deserialize a :meth:`serialized <serialize>` database into a
:class:`Connection`.
Expand Down

0 comments on commit 5b7b058

Please sign in to comment.