summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/fileutils.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/fileutils.c b/Python/fileutils.c
index 244bd89..22b2257 100644
--- a/Python/fileutils.c
+++ b/Python/fileutils.c
@@ -1162,8 +1162,6 @@ _Py_fstat_noraise(int fd, struct _Py_stat_struct *status)
}
_Py_attribute_data_to_stat(&info, 0, status);
- /* specific to fstat() */
- status->st_ino = (((uint64_t)info.nFileIndexHigh) << 32) + info.nFileIndexLow;
return 0;
#else
return fstat(fd, status);