Return the flags.
(self, *, follow_symlinks=True)
| 374 | |
| 375 | if hasattr(os.stat_result, 'st_flags'): |
| 376 | def _bsd_flags(self, *, follow_symlinks=True): |
| 377 | """Return the flags.""" |
| 378 | return self._stat(follow_symlinks=follow_symlinks).st_flags |
| 379 | |
| 380 | if hasattr(os, 'listxattr'): |
| 381 | def _xattrs(self, *, follow_symlinks=True): |