https://github.com/python/cpython/commit/cd3e7ac89b151d1b2d8088f6c424a064ff7e1fe9
commit: cd3e7ac89b151d1b2d8088f6c424a064ff7e1fe9
branch: main
author: Lee Dogeon <[email protected]>
committer: picnixz <[email protected]>
date: 2025-07-14T08:02:05Z
summary:
gh-67341: fix a typo in `Include/fileutils.h` (#136049)
`IO_REPARSE_TAG_SYMLINK` is mapped to `S_IFLNK` in `fileutils.c`, not in
`posixmodule.c`
files:
M Include/fileutils.h
diff --git a/Include/fileutils.h b/Include/fileutils.h
index 1509198e45f0ca..00c37fa4602428 100644
--- a/Include/fileutils.h
+++ b/Include/fileutils.h
@@ -16,7 +16,7 @@
# define S_IFMT 0170000
#endif
#ifndef S_IFLNK
- // Windows doesn't define S_IFLNK, but posixmodule.c maps
+ // Windows doesn't define S_IFLNK, but fileutils.c maps
// IO_REPARSE_TAG_SYMLINK to S_IFLNK.
# define S_IFLNK 0120000
#endif
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]