mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Backed out changeset 61bada808b34
This commit is contained in:
parent
e3d0b65118
commit
9cc4321bf5
1 changed files with 1 additions and 2 deletions
|
@ -1955,8 +1955,7 @@ _pystat_fromstructstat(STRUCT_STAT *st)
|
|||
PyStructSequence_SET_ITEM(v, 2,
|
||||
PyLong_FromLongLong((PY_LONG_LONG)st->st_dev));
|
||||
#else
|
||||
PyStructSequence_SET_ITEM(v, 2,
|
||||
PyLong_FromUnsignedLong(st->st_dev));
|
||||
PyStructSequence_SET_ITEM(v, 2, PyLong_FromLong((long)st->st_dev));
|
||||
#endif
|
||||
PyStructSequence_SET_ITEM(v, 3, PyLong_FromLong((long)st->st_nlink));
|
||||
PyStructSequence_SET_ITEM(v, 4, PyLong_FromLong((long)st->st_uid));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue