Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dfileutils.h67 unsigned long st_file_attributes; member
/external/python/pyfakefs/pyfakefs/
Dhelpers.py193 def st_file_attributes(self): member in FakeStatResult
/external/python/cpython3/Lib/
Dshutil.py570 (st.st_file_attributes & stat.FILE_ATTRIBUTE_REPARSE_POINT
579 (st.st_file_attributes & stat.FILE_ATTRIBUTE_REPARSE_POINT
/external/python/cpython3/Doc/library/
Dstat.rst404 testing bits in the ``st_file_attributes`` member returned by :func:`os.stat`.
Dos.rst2675 .. attribute:: st_file_attributes
2684 When :attr:`st_file_attributes` has the ``FILE_ATTRIBUTE_REPARSE_POINT``
2706 Added the :attr:`st_file_attributes` member on Windows.
/external/python/cpython3/Python/
Dfileutils.c892 result->st_file_attributes = info->dwFileAttributes; in _Py_attribute_data_to_stat()
/external/python/cpython3/Lib/test/
Dtest_os.py551 self.assertTrue(isinstance(result.st_file_attributes, int))
552 self.assertTrue(0 <= result.st_file_attributes <= 0xFFFFFFFF)
561 result.st_file_attributes & stat.FILE_ATTRIBUTE_DIRECTORY,
572 result.st_file_attributes & stat.FILE_ATTRIBUTE_DIRECTORY,
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1490 :attr:`stat_result.st_file_attributes <os.stat_result.st_file_attributes>`
/external/python/cpython3/Modules/
Dposixmodule.c2391 PyLong_FromUnsignedLong(st->st_file_attributes)); in _pystat_fromstructstat()
13380 dir_bits = self->win32_lstat.st_file_attributes & FILE_ATTRIBUTE_DIRECTORY; in DirEntry_test_mode()
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst3233 Added the ``st_file_attributes`` field to os.stat_result on Windows.