8000 [3.6] bpo-32878: Adds documentation for st_ino on Windows (GH-5764) by zooba · Pull Request #7190 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.6] bpo-32878: Adds documentation for st_ino on Windows (GH-5764) #7190

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion Doc/library/os.rst
Original file line number Diff line number Diff line change
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