Home
last modified time | relevance | path

Searched refs:st_file_attributes (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Include/cpython/
Dfileutils.h70 unsigned long st_file_attributes; member
/third_party/python/Lib/
Dshutil.py569 (st.st_file_attributes & stat.FILE_ATTRIBUTE_REPARSE_POINT
578 (st.st_file_attributes & stat.FILE_ATTRIBUTE_REPARSE_POINT
/third_party/python/Doc/library/
Dstat.rst404 testing bits in the ``st_file_attributes`` member returned by :func:`os.stat`.
Dos.rst2809 .. attribute:: st_file_attributes
2818 When :attr:`st_file_attributes` has the ``FILE_ATTRIBUTE_REPARSE_POINT``
2840 Added the :attr:`st_file_attributes` member on Windows.
/third_party/python/Python/
Dfileutils.c1103 result->st_file_attributes = info->dwFileAttributes; in _Py_attribute_data_to_stat()
/third_party/python/Lib/test/
Dtest_os.py691 self.assertTrue(isinstance(result.st_file_attributes, int))
692 self.assertTrue(0 <= result.st_file_attributes <= 0xFFFFFFFF)
701 result.st_file_attributes & stat.FILE_ATTRIBUTE_DIRECTORY,
712 result.st_file_attributes & stat.FILE_ATTRIBUTE_DIRECTORY,
/third_party/python/Doc/whatsnew/
D3.5.rst1490 :attr:`stat_result.st_file_attributes <os.stat_result.st_file_attributes>`
/third_party/python/Modules/
Dposixmodule.c2475 PyLong_FromUnsignedLong(st->st_file_attributes)); in _pystat_fromstructstat()
13639 dir_bits = self->win32_lstat.st_file_attributes & FILE_ATTRIBUTE_DIRECTORY; in DirEntry_test_mode()
/third_party/python/Misc/NEWS.d/
D3.5.0a1.rst3233 Added the ``st_file_attributes`` field to os.stat_result on Windows.