Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.4k
Closed
Description
Feature or enhancement
Thestatus->st_ino = (((uint64_t)info.nFileIndexHigh) << 32) + info.nFileIndexLow;
in function_Py_fstat_noraise()
in filePython/fileutils.c
is already calculated and assigned in the function_Py_attribute_data_to_stat()
in same file.
So I'm proposing removing the duplicated code.
Pitch
It's a duplicated code that is already done in the previous function call_Py_attribute_data_to_stat()
.