[issue42461] os.statvfs_result doesn't show f_fsid

2020-12-04 Thread haoyixing
haoyixing <359062...@qq.com> added the comment: hi christian, is there any future suggestions? -- ___ Python tracker ___ ___ Python-

[issue42461] os.statvfs_result doesn't show f_fsid

2020-11-25 Thread haoyixing
haoyixing <359062...@qq.com> added the comment: Under my mac and fedora test environment, calling statfs in C language as a non-privileged user both returned meaningful fsid. And in python os.statvfs(some_path).f_fsid can also show the f_fsid of path. So I didn't see any inconveniences so far

[issue42461] os.statvfs_result doesn't show f_fsid

2020-11-25 Thread Christian Heimes
Christian Heimes added the comment: Changeset 96a5e50a5de3683b2afd6d680c7ecc4b525986f6 added a new struct member but did not increase PyStructSequence_Desc.n_in_sequence of statvfs_result_desc. I'm not sure if the size of the sequence was not increased on purpose. For reference the feature w

[issue42461] os.statvfs_result doesn't show f_fsid

2020-11-25 Thread hao
Change by hao <359062...@qq.com>: -- keywords: +patch pull_requests: +22397 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23511 ___ Python tracker __

[issue42461] os.statvfs_result doesn't show f_fsid

2020-11-25 Thread hao
New submission from hao <359062...@qq.com>: >From doc I see about os.statvfs "New in version 3.7: Added f_fsid.", but it >doesn't show up when print an object os.statvfs returned. So I think maybe we >can add the field when printing object. -- components: Library (Lib) messages: 38181