-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
Fix docstring typo in sqlite3.Connection.executescript/sqlite3.Cursor.executescript #27147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix docstring typo in sqlite3.Connection.executescript/sqlite3.Cursor.executescript #27147
Conversation
…tescript docstring
0a655a1
to
dd708b7
Compare
cc. @pablogsal |
@erlend-aasland: Status check is done, and it's a success ✅ . |
Thanks @erlend-aasland for the PR 🌮🎉.. I'm working now to backport this PR to: 3.10. |
Sorry, @erlend-aasland, I could not cleanly backport this to |
….Cursor.executescript (pythonGH-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. (cherry picked from commit 81b8c0a) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
GH-27151 is a backport of this pull request to the 3.10 branch. |
Update clinic bco. pythonGH-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