mirror of
https://github.com/python/cpython.git
synced 2025-10-01 21:02:15 +00:00
bpo-32878: Adds documentation for st_ino on Windows (GH-5764) (#7189)
(cherry picked from commit 3e51a3d592
)
Co-authored-by: Steve Dower <steve.dower@microsoft.com>
This commit is contained in:
parent
1827615500
commit
78e14f8eb4
1 changed files with 11 additions and 1 deletions
|
@ -2378,7 +2378,13 @@ features:
|
||||||
|
|
||||||
.. attribute:: st_ino
|
.. attribute:: st_ino
|
||||||
|
|
||||||
Inode number.
|
Platform dependent, but if non-zero, uniquely identifies the
|
||||||
|
file for a given value of ``st_dev``. Typically:
|
||||||
|
|
||||||
|
* the inode number on Unix,
|
||||||
|
* the `file index
|
||||||
|
<https://msdn.microsoft.com/en-us/library/aa363788>`_ on
|
||||||
|
Windows
|
||||||
|
|
||||||
.. attribute:: st_dev
|
.. attribute:: st_dev
|
||||||
|
|
||||||
|
@ -2537,6 +2543,10 @@ features:
|
||||||
.. versionadded:: 3.5
|
.. versionadded:: 3.5
|
||||||
Added the :attr:`st_file_attributes` member on Windows.
|
Added the :attr:`st_file_attributes` member on Windows.
|
||||||
|
|
||||||
|
.. versionchanged:: 3.5
|
||||||
|
Windows now returns the file index as :attr:`st_ino` when
|
||||||
|
available.
|
||||||
|
|
||||||
.. versionadded:: 3.7
|
.. versionadded:: 3.7
|
||||||
Added the :attr:`st_fstype` member to Solaris/derivatives.
|
Added the :attr:`st_fstype` member to Solaris/derivatives.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue