diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-07-24 10:44:07 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-07-24 10:44:07 (GMT) |
commit | e1d24f7ec3d3d6011c790fdc5088ed5dde81723f (patch) | |
tree | d0120e4e425a4d01a622d4910cf26ab982f877f1 /Doc/whatsnew | |
parent | 24ad98b98cfa9be1dc704c37a9538a8c0bc113e0 (diff) | |
parent | 992019c0061d62ccb5e0715675ddf3aa2d1b6478 (diff) | |
download | cpython-e1d24f7ec3d3d6011c790fdc5088ed5dde81723f.zip cpython-e1d24f7ec3d3d6011c790fdc5088ed5dde81723f.tar.gz cpython-e1d24f7ec3d3d6011c790fdc5088ed5dde81723f.tar.bz2 |
Issue #21813: Enhance documentation of the os.stat_result class.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index d19bb25..6cfea84 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -185,11 +185,8 @@ ipaddress os -- -* :class:`os.stat_result` now has a ``st_file_attributes`` field on Windows, - containing the ``dwFileAttributes`` member of the - ``BY_HANDLE_FILE_INFORMATION`` structure returned by - ``GetFileInformationByHandle()`` (contributed by Ben Hoyt in - :issue:`21719`). +* :class:`os.stat_result` now has a :attr:`~os.stat_result.st_file_attributes` + attribute on Windows (contributed by Ben Hoyt in :issue:`21719`). shutil ------ |