8000 Docs: improve accuracy of sqlite3 `check_same_thread` parameter by marcospgp · Pull Request #101351 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Docs: improve accuracy of sqlite3 check_same_thread parameter #101351

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

Merged
merged 6 commits into from
Feb 1, 2023
Merged
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
Next Next commit
Update Doc/library/sqlite3.rst
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
  • Loading branch information
marcospgp and erlend-aasland committed Jan 30, 2023
commit 6b865cf3ef0cf40ac3acef0dde76a55f2219c7cc
2 changes: 1 addition & 1 deletion Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ Module functions
:type isolation_level: str | None

:param bool check_same_thread:
If ``True`` (default), an exception will be raised if the database connection
If ``True`` (default), :exc:`ProgrammingError` will be raised if the database connection
is used by a thread other than the one that created it.
If ``False``, the connection may be accessed in multiple threads;
write operations may need to be serialized by the user
Expand Down
0