mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
gh-103015: Add entrypoint keyword param to sqlite3.Connection.load_extension (#103073)
This commit is contained in:
parent
28a05f4cc2
commit
222c63fc6b
9 changed files with 105 additions and 15 deletions
|
|
@ -987,6 +987,9 @@ _PyUnicode_InitStaticStrings(PyInterpreterState *interp) {
|
|||
string = &_Py_ID(endpos);
|
||||
assert(_PyUnicode_CheckConsistency(string, 1));
|
||||
_PyUnicode_InternInPlace(interp, &string);
|
||||
string = &_Py_ID(entrypoint);
|
||||
assert(_PyUnicode_CheckConsistency(string, 1));
|
||||
_PyUnicode_InternInPlace(interp, &string);
|
||||
string = &_Py_ID(env);
|
||||
assert(_PyUnicode_CheckConsistency(string, 1));
|
||||
_PyUnicode_InternInPlace(interp, &string);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue