diff --git a/stdlib/3/os/__init__.pyi b/stdlib/3/os/__init__.pyi index 8a8ce6198aaae..bbfd044596174 100644 --- a/stdlib/3/os/__init__.pyi +++ b/stdlib/3/os/__init__.pyi @@ -138,6 +138,12 @@ class stat_result: st_ctime = 0.0 # platform dependent (time of most recent metadata change # on Unix, or the time of creation on Windows) + if sys.version_info >= (3, 3): + st_atime_ns = 0 # time of most recent access, in nanoseconds + st_mtime_ns = 0 # time of most recent content modification in nanoseconds + st_ctime_ns = 0 # platform dependent (time of most recent metadata change + # on Unix, or the time of creation on Windows) in nanoseconds + # not documented def __init__(self, tuple: Tuple[int, ...]) -> None: ...