Return the modify time in nanoseconds.
(self, *, follow_symlinks=True)
| 369 | return self._stat(follow_symlinks=follow_symlinks).st_atime_ns |
| 370 | |
| 371 | def _mod_time_ns(self, *, follow_symlinks=True): |
| 372 | """Return the modify time in nanoseconds.""" |
| 373 | return self._stat(follow_symlinks=follow_symlinks).st_mtime_ns |
| 374 | |
| 375 | if hasattr(os.stat_result, 'st_flags'): |
| 376 | def _bsd_flags(self, *, follow_symlinks=True): |