cpython/Modules/_sqlite
Petr Viktorin ffd9753a94
bpo-39245: Switch to public API for Vectorcall (GH-18460)
The bulk of this patch was generated automatically with:

    for name in \
        PyObject_Vectorcall \
        Py_TPFLAGS_HAVE_VECTORCALL \
        PyObject_VectorcallMethod \
        PyVectorcall_Function \
        PyObject_CallOneArg \
        PyObject_CallMethodNoArgs \
        PyObject_CallMethodOneArg \
    ;
    do
        echo $name
        git grep -lwz _$name | xargs -0 sed -i "s/\b_$name\b/$name/g"
    done

    old=_PyObject_FastCallDict
    new=PyObject_VectorcallDict
    git grep -lwz $old | xargs -0 sed -i "s/\b$old\b/$new/g"

and then cleaned up:

- Revert changes to in docs & news
- Revert changes to backcompat defines in headers
- Nudge misaligned comments
2020-02-11 17:46:57 +01:00
..
cache.c bpo-39245: Switch to public API for Vectorcall (GH-18460) 2020-02-11 17:46:57 +01:00
cache.h bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) 2019-03-19 22:10:18 +09:00
connection.c bpo-39245: Switch to public API for Vectorcall (GH-18460) 2020-02-11 17:46:57 +01:00
connection.h closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268) 2019-07-12 20:15:48 -07:00
cursor.c bpo-39245: Switch to public API for Vectorcall (GH-18460) 2020-02-11 17:46:57 +01:00
cursor.h bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) 2019-03-19 22:10:18 +09:00
microprotocols.c bpo-39245: Switch to public API for Vectorcall (GH-18460) 2020-02-11 17:46:57 +01:00
microprotocols.h bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) 2019-03-19 22:10:18 +09:00
module.c bpo-39494: Remove extra null terminators from kwlist vars (GH-18267) 2020-01-30 07:12:53 +03:00
module.h bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) 2019-03-19 22:10:18 +09:00
prepare_protocol.c bpo-39573: Add Py_SET_TYPE() function (GH-18394) 2020-02-07 09:17:07 +01:00
prepare_protocol.h bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) 2019-03-19 22:10:18 +09:00
row.c bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. (GH-16190) 2019-09-17 09:20:56 +03:00
row.h bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) 2019-03-19 22:10:18 +09:00
statement.c bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386) 2019-06-26 03:16:24 +02:00
statement.h bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) 2019-03-19 22:10:18 +09:00
util.c Replace _pysqlite_long_from_int64() with PyLong_FromLongLong() (GH-16882) 2019-10-23 11:09:01 +03:00
util.h Replace _pysqlite_long_from_int64() with PyLong_FromLongLong() (GH-16882) 2019-10-23 11:09:01 +03:00