[Python-checkins] gh-94630: Fixup sqlite3 argument spec docs for connection execute* methods (GH-95319)
miss-islington
webhook-mailer at python.org
Wed Jul 27 08:56:12 EDT 2022
https://github.com/python/cpython/commit/f28118211fd4883ae0e47492b2029bcc584572d5
commit: f28118211fd4883ae0e47492b2029bcc584572d5
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022年07月27日T05:56:07-07:00
summary:
gh-94630: Fixup sqlite3 argument spec docs for connection execute* methods (GH-95319)
(cherry picked from commit 2b37395612ece0a8c37439801087ba9e2c56702f)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland at protonmail.com>
files:
M Doc/library/sqlite3.rst
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 5969cbb3de714..6f57b1dd185c0 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -489,19 +489,19 @@ Connection Objects
make sure to :meth:`commit` before closing
to avoid losing pending changes.
- .. method:: execute(sql[, parameters])
+ .. method:: execute(sql, parameters=(), /)
Create a new :class:`Cursor` object and call
:meth:`~Cursor.execute` on it with the given *sql* and *parameters*.
Return the new cursor object.
- .. method:: executemany(sql[, parameters])
+ .. method:: executemany(sql, parameters, /)
Create a new :class:`Cursor` object and call
:meth:`~Cursor.executemany` on it with the given *sql* and *parameters*.
Return the new cursor object.
- .. method:: executescript(sql_script)
+ .. method:: executescript(sql_script, /)
Create a new :class:`Cursor` object and call
:meth:`~Cursor.executescript` on it with the given *sql_script*.
@@ -971,11 +971,11 @@ Cursor Objects
a transaction is implicitly opened before executing *sql*.
- .. method:: executemany(sql, seq_of_parameters, /)
+ .. method:: executemany(sql, parameters, /)
Execute :ref:`parameterized <sqlite3-placeholders>` SQL statement *sql*
against all parameter sequences or mappings found in the sequence
- *seq_of_parameters*. It is also possible to use an
+ *parameters*. It is also possible to use an
:term:`iterator` yielding parameters instead of a sequence.
Uses the same implicit transaction handling as :meth:`~Cursor.execute`.
More information about the Python-checkins
mailing list