-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
Finish deprecation period for some sqlite3.Connection APIs #133595
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
Comments
* All parameters of sqlite3.connect() except "database" are now keyword-only. * The first three parameters of methods create_function() and create_aggregate() are now positional-only. * The first parameter of methods set_authorizer(), set_progress_handler() and set_trace_callback() is now positional-only.
* All parameters of sqlite3.connect() except "database" are now keyword-only. * The first three parameters of methods create_function() and create_aggregate() are now positional-only. * The first parameter of methods set_authorizer(), set_progress_handler() and set_trace_callback() is now positional-only.
Now we finally can do the changes planned in #108278 and harmonize parameter names (like narg/n_arg/num_params). @erlend-aasland, do you want to do this? |
Yes, let's harmonise them. |
Then I leave it to you. I only rushed #133605 because the compilation warnings were annoying me. I have also noticed that we missed to remove some deprecated features in 3.14. |
I'll have a look and adjust the deprecation periods to 3.15. |
This is a continuation of #108278.
Passing some arguments by keyword or as positional was deprecated in 3.13. It is time to finish the deprecation period.
Linked PRs
The text was updated successfully, but these errors were encountered: