Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
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
2 changes: 1 addition & 1 deletion Doc/whatsnew/3.14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ sqlite3
* Remove :data:`!version` and :data:`!version_info` from :mod:`sqlite3`.
(Contributed by Hugo van Kemenade in :gh:`118924`.)

* Disallow using a sequence of params with named placeholders.
* Disallow using a sequence of parameters with named placeholders.
This had previously raised a :exc:`DeprecationWarning` since Python 3.12;
it will now raise a :exc:`sqlite3.ProgrammingError`.
(Contributed by Erlend E. Aasland in :gh:`118928` and :gh:`101693`.)
Comment thread
erlend-aasland marked this conversation as resolved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Disallow using a sequence of params with named placeholders in
Disallow using a sequence of parameters with named placeholders in
:mod:`sqlite3` queries. Patch by Erlend E. Aasland.