]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-108765: fix comment about macro definitions in `_stat.c` post GH-108854...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 27 Jun 2025 15:39:18 +0000 (17:39 +0200)
committerGitHub <noreply@github.com>
Fri, 27 Jun 2025 15:39:18 +0000 (15:39 +0000)
gh-108765: fix comment about macro definitions in `_stat.c` post GH-108854 (GH-136027)
(cherry picked from commit 0141e7f9e66e5e5ac3949fb018dd6811cd630dca)

Co-authored-by: Lee Dogeon <dev.moreal@gmail.com>
Modules/_stat.c

index a4f15e8e65e89477dceb77a9f2b479c9358916b3..9e1a79ccfc1d681336c7d1610c7a7be4d8fd7ae0 100644 (file)
@@ -57,7 +57,7 @@ typedef unsigned short mode_t;
  * Only the names are defined by POSIX but not their value. All common file
  * types seems to have the same numeric value on all platforms, though.
  *
- * pyport.h guarantees S_IFMT, S_IFDIR, S_IFCHR, S_IFREG and S_IFLNK
+ * fileutils.h guarantees S_IFMT, S_IFDIR, S_IFCHR, S_IFREG and S_IFLNK
  */
 
 #ifndef S_IFBLK
@@ -86,7 +86,7 @@ typedef unsigned short mode_t;
 
 
 /* S_ISXXX()
- * pyport.h defines S_ISDIR(), S_ISREG() and S_ISCHR()
+ * fileutils.h defines S_ISDIR(), S_ISREG() and S_ISCHR()
  */
 
 #ifndef S_ISBLK