Searched refs:st_file_attributes (Results 1 – 9 of 9) sorted by relevance
86 unsigned long st_file_attributes; member
561 (st.st_file_attributes & stat.FILE_ATTRIBUTE_REPARSE_POINT570 (st.st_file_attributes & stat.FILE_ATTRIBUTE_REPARSE_POINT
404 testing bits in the ``st_file_attributes`` member returned by :func:`os.stat`.
2618 .. attribute:: st_file_attributes2627 When :attr:`st_file_attributes` has the ``FILE_ATTRIBUTE_REPARSE_POINT``2649 Added the :attr:`st_file_attributes` member on Windows.
892 result->st_file_attributes = info->dwFileAttributes; in _Py_attribute_data_to_stat()
549 self.assertTrue(isinstance(result.st_file_attributes, int))550 self.assertTrue(0 <= result.st_file_attributes <= 0xFFFFFFFF)559 result.st_file_attributes & stat.FILE_ATTRIBUTE_DIRECTORY,570 result.st_file_attributes & stat.FILE_ATTRIBUTE_DIRECTORY,
1490 :attr:`stat_result.st_file_attributes <os.stat_result.st_file_attributes>`
2209 PyLong_FromUnsignedLong(st->st_file_attributes)); in _pystat_fromstructstat()12573 dir_bits = self->win32_lstat.st_file_attributes & FILE_ATTRIBUTE_DIRECTORY; in DirEntry_test_mode()
3233 Added the ``st_file_attributes`` field to os.stat_result on Windows.