Return the modify time in nanoseconds.
(self, *, follow_symlinks=True)
| 735 | return self._stat(follow_symlinks=follow_symlinks).st_atime_ns |
| 736 | |
| 737 | def _mod_time_ns(self, *, follow_symlinks=True): |
| 738 | """Return the modify time in nanoseconds.""" |
| 739 | return self._stat(follow_symlinks=follow_symlinks).st_mtime_ns |
| 740 | |
| 741 | if hasattr(os.stat_result, 'st_flags'): |
| 742 | def _bsd_flags(self, *, follow_symlinks=True): |