We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289f458 commit 106c5adCopy full SHA for 106c5ad
Modules/posixmodule.c
@@ -3441,7 +3441,7 @@ STATX_GET_DOUBLE(st_mtime, mtime_sec, STATX_MTIME)
3441
}
3442
3443
STATX_GET_NSEC(st_atime_ns, stx_atime, STATX_ATIME)
3444
-STATX_GET_NSEC(st_birthtime_ns, stx_atime, STATX_BTIME)
+STATX_GET_NSEC(st_birthtime_ns, stx_btime, STATX_BTIME)
3445
STATX_GET_NSEC(st_ctime_ns, stx_ctime, STATX_CTIME)
3446
STATX_GET_NSEC(st_mtime_ns, stx_mtime, STATX_MTIME)
3447
@@ -3459,7 +3459,7 @@ static PyGetSetDef pystatx_result_getset[] = {
3459
G(st_atime_ns, "time of last access in nanoseconds"),
3460
G(st_birthtime, "time of creation"),
3461
G(st_birthtime_ns, "time of creation in nanoseconds"),
3462
- G(st_ctime, "time of last modification"),
+ G(st_ctime, "time of last change"),
3463
G(st_ctime_ns, "time of last change in nanoseconds"),
3464
G(st_mtime, "time of last modification"),
3465
G(st_mtime_ns, "time of last modification in nanoseconds"),
0 commit comments