mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
bpo-27961: Replace PY_LONG_LONG with long long. (GH-15386)
This commit is contained in:
parent
919f0bc8c9
commit
a9ed91e6c2
4 changed files with 6 additions and 6 deletions
|
@ -4763,8 +4763,8 @@ dict_get_version(PyObject *self, PyObject *args)
|
|||
|
||||
version = dict->ma_version_tag;
|
||||
|
||||
Py_BUILD_ASSERT(sizeof(unsigned PY_LONG_LONG) >= sizeof(version));
|
||||
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG)version);
|
||||
Py_BUILD_ASSERT(sizeof(unsigned long long) >= sizeof(version));
|
||||
return PyLong_FromUnsignedLongLong((unsigned long long)version);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue