This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Solaris "stat" should support "st_fstype"
Type: enhancement Stage: resolved
Components: Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jcea Nosy List: iritkatriel, jcea
Priority: normal Keywords: patch

Created on 2018-01-25 00:46 by jcea, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 5307 merged jcea, 2018-01-25 03:02
Messages (3)
msg310650 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2018-01-25 00:46
Solaris has an extra "st_fstype" in the "stat" structure:

"""
       st_fstype
                     A null-teminated string that uniquely identifies the type
                     of the filesystem that contains the file.
"""

Supporting this should be trivial and 3.7RC1 is still a week away. I can take care of the patch for Python 3.7, if you agree that this must be fixed.
msg310945 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2018-01-28 13:00
New changeset 6c51d518800cdda7ba16ae163be0d211d2c4fa12 by jcea in branch 'master':
bpo-32659: Solaris "stat" should support "st_fstype" (#5307)
https://github.com/python/cpython/commit/6c51d518800cdda7ba16ae163be0d211d2c4fa12
msg378731 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2020-10-16 18:23
This seems complete, can it be closed?
History
Date User Action Args
2022-04-11 14:58:57adminsetgithub: 76840
2020-10-27 14:57:48vstinnersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-10-16 18:23:20iritkatrielsetnosy: + iritkatriel
messages: + msg378731
2018-01-28 13:00:11jceasetmessages: + msg310945
2018-01-25 03:02:14jceasetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request5154
2018-01-25 00:46:54jceacreate