Docs: Escape lone stars in sqlite3 docs (GH-96081)

(cherry picked from commit 91afe66707)

Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
This commit is contained in:
Miss Islington (bot) 2022-08-18 11:47:42 -07:00 committed by GitHub
parent 972150b8e3
commit e8e3fe9931
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -542,7 +542,7 @@ Connection objects
supplied, this must be a callable returning an instance of :class:`Cursor` supplied, this must be a callable returning an instance of :class:`Cursor`
or its subclasses. 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 Open a :class:`Blob` handle to an existing
:abbr:`BLOB (Binary Large OBject)`. :abbr:`BLOB (Binary Large OBject)`.
@ -612,7 +612,7 @@ Connection objects
:meth:`~Cursor.executescript` on it with the given *sql_script*. :meth:`~Cursor.executescript` on it with the given *sql_script*.
Return the new cursor object. 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. Create or remove a user-defined SQL function.
@ -903,7 +903,7 @@ Connection objects
con.close() 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. Create a backup of an SQLite database.
@ -1015,7 +1015,7 @@ Connection objects
.. _SQLite limit category: https://www.sqlite.org/c3ref/c_limit_attached.html .. _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 Serialize a database into a :class:`bytes` object. For an
ordinary on-disk database file, the serialization is just a copy of the ordinary on-disk database file, the serialization is just a copy of the
@ -1037,7 +1037,7 @@ Connection objects
.. versionadded:: 3.11 .. versionadded:: 3.11
.. method:: deserialize(data, /, *, name="main") .. method:: deserialize(data, /, \*, name="main")
Deserialize a :meth:`serialized <serialize>` database into a Deserialize a :meth:`serialized <serialize>` database into a
:class:`Connection`. :class:`Connection`.