8000 gh-131002: clarify how to enforce sqlite3 column types for generated fields by erlend-aasland · Pull Request #131006 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-131002: clarify how to enforce sqlite3 column types for generated fields #131006

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
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 sqlite3.rst
  • Loading branch information
erlend-aasland authored Mar 17, 2025
commit 72a3c119434af39752c0bad37e1bdfee5c580188
2 changes: 1 addition & 1 deletion Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ Module constants
:func:`connect` to look up a converter function by
using the type name, parsed from the query column name,
as the converter dictionary key.
The query column name must be wrapped in double quotes (``"``),
The query column name must be wrapped in double quotes (``"``)
and the type name must be wrapped in square brackets (``[]``).

.. code-block:: sql
Expand Down
0