Return the flags.
(self, *, follow_symlinks=True)
| 740 | |
| 741 | if hasattr(os.stat_result, 'st_flags'): |
| 742 | def _bsd_flags(self, *, follow_symlinks=True): |
| 743 | """Return the flags.""" |
| 744 | return self._stat(follow_symlinks=follow_symlinks).st_flags |
| 745 | |
| 746 | if hasattr(os, 'listxattr'): |
| 747 | def _xattrs(self, *, follow_symlinks=True): |