diff options
author | Erlend Egeberg Aasland <erlend.aasland@protonmail.com> | 2022-07-27 12:46:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-27 12:46:21 (GMT) |
commit | 2b37395612ece0a8c37439801087ba9e2c56702f (patch) | |
tree | 6123a56d6f6e9e9d58b31e905eeab7387aae5573 | |
parent | deacf391d7a1b3ab49bffa16088b3500fdb4c435 (diff) | |
download | cpython-2b37395612ece0a8c37439801087ba9e2c56702f.zip cpython-2b37395612ece0a8c37439801087ba9e2c56702f.tar.gz cpython-2b37395612ece0a8c37439801087ba9e2c56702f.tar.bz2 |
gh-94630: Fixup sqlite3 argument spec docs for connection execute* methods (#95319)
-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 b780605..f71b49c 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -499,19 +499,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*. @@ -981,11 +981,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`. |