diff options
author | jcea <jcea@jcea.es> | 2018-01-28 13:00:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-28 13:00:08 (GMT) |
commit | 6c51d518800cdda7ba16ae163be0d211d2c4fa12 (patch) | |
tree | b5f8ee9bd042849b6260d4b8b10d1ff53a75b881 /Doc | |
parent | 43c0f1ac5ed8bc9c3bd048d2ce4de4c98a83de99 (diff) | |
download | cpython-6c51d518800cdda7ba16ae163be0d211d2c4fa12.zip cpython-6c51d518800cdda7ba16ae163be0d211d2c4fa12.tar.gz cpython-6c51d518800cdda7ba16ae163be0d211d2c4fa12.tar.bz2 |
bpo-32659: Solaris "stat" should support "st_fstype" (#5307)
* bpo-32659: Solaris "stat" should support "st_fstype"
* Add 'versionadded'
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index b8f57f5..bae432d 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -2474,6 +2474,14 @@ features: Time of file creation. + On Solaris and derivatives, the following attributes may also be + available: + + .. attribute:: st_fstype + + String that uniquely identifies the type of the filesystem that + contains the file. + On Mac OS systems, the following attributes may also be available: .. attribute:: st_rsize @@ -2517,6 +2525,8 @@ features: .. versionadded:: 3.5 Added the :attr:`st_file_attributes` member on Windows. + .. versionadded:: 3.7 + Added the :attr:`st_fstype` member to Solaris/derivatives. .. function:: statvfs(path) |