Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-108278: Deprecate passing the three first params as keyword args for sqlite3 UDF creation APIs #108281

Merged

Commits on Aug 22, 2023

  1. pythongh-108278: Clean up some sqlite3 connection APIs

    Deprecate passing name, number of arguments, and the callable as keyword
    arguments, for the following sqlite3.Connection APIs:
    
    - create_function(name, nargs, callable, ...)
    - create_aggregate(name, nargs, callable)
    
    Deprecate passing the callback as a keyword argument, for the following
    sqlite3.Connection APIs:
    
    - set_authorizer(callback)
    - set_progress_handler(callback, n)
    - set_trace_callback(callback)
    
    The affected parameters will become positional-only in Python 3.15.
    erlend-aasland committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    4f89b4c View commit details
    Browse the repository at this point in the history
  2. Sphinx fixup

    erlend-aasland committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    634217b View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. Pull in main

    erlend-aasland committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    7fa3edb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cedd33a View commit details
    Browse the repository at this point in the history
  3. Update docs

    erlend-aasland committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    54e35d5 View commit details
    Browse the repository at this point in the history
  4. Add test

    erlend-aasland committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    833197a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    661cd7a View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2023

  1. Pull in main

    erlend-aasland committed Aug 27, 2023
    Configuration menu
    Copy the full SHA
    f72c5e9 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2023

  1. Pull in main

    erlend-aasland committed Aug 28, 2023
    Configuration menu
    Copy the full SHA
    37205c4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    15cf809 View commit details
    Browse the repository at this point in the history