-
-
Notifications
You must be signed in to change notification settings - Fork 30.5k
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
Document all parameters of all sqlite3 functions/methods #95235
Comments
erlend-aasland
added a commit
to erlend-aasland/cpython
that referenced
this issue
Jul 25, 2022
erlend-aasland
added a commit
to erlend-aasland/cpython
that referenced
this issue
Jul 25, 2022
erlend-aasland
added
the
triaged
The issue has been accepted as valid by a triager.
label
Jul 25, 2022
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Jul 25, 2022
… and methods (pythonGH-95236) Co-authored-by: CAM Gerlach <[email protected]> (cherry picked from commit ac6a94c) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Jul 25, 2022
… and methods (pythonGH-95236) Co-authored-by: CAM Gerlach <[email protected]> (cherry picked from commit ac6a94c) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
erlend-aasland
added a commit
that referenced
this issue
Jul 25, 2022
…ethods (#95236) Co-authored-by: CAM Gerlach <[email protected]>
miss-islington
added a commit
that referenced
this issue
Jul 25, 2022
…ethods (GH-95236) Co-authored-by: CAM Gerlach <[email protected]> (cherry picked from commit ac6a94c) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
miss-islington
added a commit
that referenced
this issue
Jul 25, 2022
…ethods (GH-95236) Co-authored-by: CAM Gerlach <[email protected]> (cherry picked from commit ac6a94c) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
erlend-aasland
added a commit
that referenced
this issue
Jul 26, 2022
Co-authored-by: CAM Gerlach <[email protected]>
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Jul 26, 2022
…ythonGH-95240) Co-authored-by: CAM Gerlach <[email protected]> (cherry picked from commit 5012bed) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
erlend-aasland
added a commit
to erlend-aasland/cpython
that referenced
this issue
Jul 26, 2022
…thods (pythonGH-95240) Co-authored-by: CAM Gerlach <[email protected]>. (cherry picked from commit 5012bed) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
erlend-aasland
added a commit
that referenced
this issue
Jul 26, 2022
…H-95240) (#95268) Co-authored-by: CAM Gerlach <[email protected]>. (cherry picked from commit 5012bed) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
ambv
pushed a commit
that referenced
this issue
Jul 26, 2022
…) (GH-95263) Co-authored-by: CAM Gerlach <[email protected]> (cherry picked from commit 5012bed) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
5 tasks
shawnbrown
added a commit
to shawnbrown/toron
that referenced
this issue
Sep 12, 2022
And remove accepts_json_input() and related tests. The `userfunc` context manager creates AND REMOVES user- defined functions. It is no longer necessary to have the `accepts_json_input` weapper class. Documentation for the sqlite3 Connection.create_function() method now say that the *func* parameter may be "Set to None to remove an existing SQL function." BUT PRIOR TO PYTHON 3.10.5, SQL FUNCTION REMOVAL WAS UNDOCUMENTED! The new language was added July 26, 2022 (python/cpython@5012bed) and is related to Issue 95235 (python/cpython#95235).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ref. #94320 (comment)
Also consider using explicit parameter lists more often (or always?). Obvious candidates for explicit parameter lists:
sqlite3.Connection.create_*
sqlite3.Connection.blobopen
sqlite3.Connection.backup
The text was updated successfully, but these errors were encountered: