Uh oh!
There was an error while loading. Please reload this page.
gh-93057: Deprecate positional use of optional sqlite3.connect() params - #107948
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
serhiy-storchaka
left a comment
There was a problem hiding this comment.
There is an issue here. Positional parameters are only deprecated in the Connection constructor. But we want also to deprecate them in connect(). Currently you can bypass the deprecations if use the Connection subclass:
class MyConnection(Connection):
def __init__(self, database, timeout=5.0, ...):
super().__init__(database, timeout=timeout, ...)
connect(":memory:", 10.0, ..., factory=MyConnection)
But if we add the second deprecation warning in connect(), we will get two deprecation warning.
erlend-aasland
commented
Aug 15, 2023
Ah, of course. That's tricky. |
serhiy-storchaka
left a comment
There was a problem hiding this comment.
Please add a test for connect() and mention this change in What's New and NEWS entries.
It is a wart that we will get two warnings, but there is no simple way to avoid it, except applying deprecations one at a time -- first in connect(), then (since 3.15) in Connection. Not sure if it it is worth.
We can also convert all positional arguments in connect() into keyword arguments for factory. It is a lot of complex code.
Uh oh!
There was an error while loading. Please reload this page.
erlend-aasland
commented
Aug 15, 2023
No, that is a backwards incompatible change. |
erlend-aasland
commented
Aug 15, 2023
Is the existing NEWS and What's New entries insufficient? In what way? |
serhiy-storchaka
commented
Aug 15, 2023
Ah, they already mention connect()! Then simply add "and the Connection constructor". |
erlend-aasland
commented
Aug 15, 2023
Yeah, that's useful information. I'll add that; thanks. |
erlend-aasland
commented
Aug 15, 2023
Thanks for the review, Serhiy. Much appreciated. |
@felixxm, sorry, I forgot to ping you; I hope not these deprecations will create havoc for Django. |
felixxm
commented
Aug 15, 2023
All good, Django doesn't pass these positional params, only a database name. Thanks 👍 |
📚 Documentation preview 📚: https://cpython-previews--107948.org.readthedocs.build/