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.

Author vstinner
Recipients benhoyt, ethan.furman, loewis, vstinner, zach.ware
Date 2014-06-11.14:35:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1402497330.43.0.654815048094.issue21719@psf.upfronthosting.co.za>
In-reply-to
Content
> Instead of the somewhat cryptic name "winattrs", I suggest to call it st_file_attributes (...)

On Windows, os.stat() calls GetFileInformationByHandle() which fills a BY_HANDLE_FILE_INFORMATION structure, and this structure has a dwFileAttributes attribute. The os.stat() calls also GetFileType().
http://msdn.microsoft.com/en-us/library/windows/desktop/aa364952%28v=vs.85%29.aspx

So I agree that os.stat().st_file_attributes is less surprising for Windows developers and it is more homogenous with FILE_ATTRIBUTE_xxx constants.
History
Date User Action Args
2014-06-11 14:35:30vstinnersetrecipients: + vstinner, loewis, benhoyt, ethan.furman, zach.ware
2014-06-11 14:35:30vstinnersetmessageid: <1402497330.43.0.654815048094.issue21719@psf.upfronthosting.co.za>
2014-06-11 14:35:30vstinnerlinkissue21719 messages
2014-06-11 14:35:30vstinnercreate