mirror of
https://github.com/python/cpython.git
synced 2025-11-01 06:01:29 +00:00
Fix docstring typo in sqlite3.Connection.executescript/sqlite3.Cursor.executescript (GH-27147)
Both `executescript` methods contain the same docstring typo: _"Executes a multiple SQL statements at once."_ => _"Executes multiple SQL statements at once."_ Automerge-Triggered-By: GH:pablogsal
This commit is contained in:
parent
1ca27f2647
commit
81b8c0a385
4 changed files with 8 additions and 8 deletions
|
|
@ -726,12 +726,12 @@ _sqlite3.Cursor.executescript as pysqlite_cursor_executescript
|
|||
sql_script as script_obj: object
|
||||
/
|
||||
|
||||
Executes a multiple SQL statements at once. Non-standard.
|
||||
Executes multiple SQL statements at once. Non-standard.
|
||||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
pysqlite_cursor_executescript(pysqlite_Cursor *self, PyObject *script_obj)
|
||||
/*[clinic end generated code: output=115a8132b0f200fe input=38c6fa6de570bb9b]*/
|
||||
/*[clinic end generated code: output=115a8132b0f200fe input=ba3ec59df205e362]*/
|
||||
{
|
||||
_Py_IDENTIFIER(commit);
|
||||
const char* script_cstr;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue