10000 bpo-43094: Update sqlite3 docs to match implementation by erlend-aasland · Pull Request #24489 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-43094: Update sqlite3 docs to match implementation #24489

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

Closed
wants to merge 10 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix sqlite3.complete_statement() docs
  • Loading branch information
Erlend E. Aasland committed Feb 9, 2021
commit 92a6efa696ef223a4bac54ae9b9c1f5a07088c6a
6 changes: 3 additions & 3 deletions Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,10 @@ Module functions and constants
float, str or bytes.


.. function:: complete_statement(sql)
.. function:: complete_statement(statement)

Returns :const:`True` if the string *sql* contains one or more complete SQL
statements terminated by semicolons. It does not verify that the SQL is
Returns :const:`True` if the string *statement* contains one or more complete
SQL statements terminated by semicolons. It does not verify that the SQL is
syntactically correct, only that there are no unclosed string literals and the
statement is terminated by a semicolon.

Expand Down
0