Skip to content

Commit 106c5ad

Browse files
committed
Fix copy/paste mistakes
1 parent 289f458 commit 106c5ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/posixmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3441,7 +3441,7 @@ STATX_GET_DOUBLE(st_mtime, mtime_sec, STATX_MTIME)
34413441
}
34423442

34433443
STATX_GET_NSEC(st_atime_ns, stx_atime, STATX_ATIME)
3444-
STATX_GET_NSEC(st_birthtime_ns, stx_atime, STATX_BTIME)
3444+
STATX_GET_NSEC(st_birthtime_ns, stx_btime, STATX_BTIME)
34453445
STATX_GET_NSEC(st_ctime_ns, stx_ctime, STATX_CTIME)
34463446
STATX_GET_NSEC(st_mtime_ns, stx_mtime, STATX_MTIME)
34473447

@@ -3459,7 +3459,7 @@ static PyGetSetDef pystatx_result_getset[] = {
34593459
G(st_atime_ns, "time of last access in nanoseconds"),
34603460
G(st_birthtime, "time of creation"),
34613461
G(st_birthtime_ns, "time of creation in nanoseconds"),
3462-
G(st_ctime, "time of last modification"),
3462+
G(st_ctime, "time of last change"),
34633463
G(st_ctime_ns, "time of last change in nanoseconds"),
34643464
G(st_mtime, "time of last modification"),
34653465
G(st_mtime_ns, "time of last modification in nanoseconds"),

0 commit comments

Comments
 (0)