]> granicus.if.org Git - python/commitdiff
bpo-32878: Adds documentation for st_ino on Windows (GH-5764) (#7189)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 29 May 2018 01:49:42 +0000 (18:49 -0700)
committerNed Deily <nad@python.org>
Tue, 29 May 2018 01:49:42 +0000 (21:49 -0400)
(cherry picked from commit 3e51a3d5927c680d5410ff11ff8d5e5bb9ffb1e7)

Co-authored-by: Steve Dower <steve.dower@microsoft.com>
Doc/library/os.rst

index 784acf0ac5d8b92c5db28286908545da2e20371a..60ab94f4769ef263f4bd5e065f00dd3f665d60f7 100644 (file)
@@ -2378,7 +2378,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
 
@@ -2537,6 +2543,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.
+
    .. versionadded:: 3.7
       Added the :attr:`st_fstype` member to Solaris/derivatives.