blob: fa2dbdf88b31c9c6448a1cf537e88cafb3717985 (
plain)
1
2
3
4
5
6
7
8
9
10
|
Deprecate passing the callback callable by keyword for the following
:class:`sqlite3.Connection` APIs:
* :meth:`~sqlite3.Connection.set_authorizer`
* :meth:`~sqlite3.Connection.set_progress_handler`
* :meth:`~sqlite3.Connection.set_trace_callback`
The affected parameters will become positional-only in Python 3.15.
Patch by Erlend E. Aasland.
|