Skip to content

Commit

Permalink
bpo-32878: Adds documentation for st_ino on Windows (GH-5764) (GH-7190)
Browse files Browse the repository at this point in the history
  • Loading branch information
zooba committed May 29, 2018
1 parent 08beaf7 commit 325320d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Doc/library/os.rst
Expand Up @@ -2263,7 +2263,13 @@ features:

.. 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

Expand Down Expand Up @@ -2416,6 +2422,10 @@ features:
.. versionadded:: 3.5
Added the :attr:`st_file_attributes` member on Windows.

.. versionchanged:: 3.5
Windows now returns the file index as :attr:`st_ino` when
available.


.. function:: stat_float_times([newvalue])

Expand Down

0 comments on commit 325320d

Please sign in to comment.