mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
Make ssize_t clean
This commit is contained in:
parent
828fdefd92
commit
95f0e4c401
4 changed files with 6 additions and 6 deletions
|
@ -377,7 +377,7 @@ void _set_result(sqlite3_context* context, PyObject* py_val)
|
|||
{
|
||||
long longval;
|
||||
const char* buffer;
|
||||
int buflen;
|
||||
Py_ssize_t buflen;
|
||||
PyObject* stringval;
|
||||
|
||||
if (PyErr_Occurred()) {
|
||||
|
@ -416,7 +416,7 @@ PyObject* _build_py_params(sqlite3_context *context, int argc, sqlite3_value** a
|
|||
PyObject* cur_py_value;
|
||||
const char* val_str;
|
||||
PY_LONG_LONG val_int;
|
||||
int buflen;
|
||||
Py_ssize_t buflen;
|
||||
void* raw_buffer;
|
||||
|
||||
args = PyTuple_New(argc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue