summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Misc/NEWS2
-rw-r--r--Modules/posixmodule.c4
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4401418d76..d04309071c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.3.3 release candidate 1?
Core and Builtins
-----------------
+- Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
+
- Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc()
fails.
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 32c85b8be9..f3234a4538 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -11965,6 +11965,10 @@ static char *have_functions[] = {
"HAVE_FCHOWN",
#endif
+#ifdef HAVE_FCHOWNAT
+ "HAVE_FCHOWNAT",
+#endif
+
#ifdef HAVE_FEXECVE
"HAVE_FEXECVE",
#endif