diff options
author | Erlend E. Aasland <erlend.aasland@protonmail.com> | 2022-10-26 14:53:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 14:53:46 (GMT) |
commit | 365852a03a0c934ccd9b6c2b8e24c71181c41f03 (patch) | |
tree | 9f76dcbe96ba4d3827bcfa943e1705aea9a10d11 /Doc | |
parent | 5e74bad93ccc681f0d407aaa3a6830a2d54a20a2 (diff) | |
download | cpython-365852a03a0c934ccd9b6c2b8e24c71181c41f03.zip cpython-365852a03a0c934ccd9b6c2b8e24c71181c41f03.tar.gz cpython-365852a03a0c934ccd9b6c2b8e24c71181c41f03.tar.bz2 |
gh-98716: Revert gh-96081: Escape lone stars in sqlite3 docs (#98720)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sqlite3.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 26a0858..a9bab9a 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -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)`. @@ -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. @@ -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. @@ -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 @@ -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`. |