mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
more PY_LONG_LONG to long long
This commit is contained in:
parent
c71ec8aef3
commit
47ff0734b8
19 changed files with 81 additions and 281 deletions
|
@ -130,7 +130,7 @@ sqlite_int64
|
|||
_pysqlite_long_as_int64(PyObject * py_val)
|
||||
{
|
||||
int overflow;
|
||||
PY_LONG_LONG value = PyLong_AsLongLongAndOverflow(py_val, &overflow);
|
||||
long long value = PyLong_AsLongLongAndOverflow(py_val, &overflow);
|
||||
if (value == -1 && PyErr_Occurred())
|
||||
return -1;
|
||||
if (!overflow) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue