Commit 6a92964b authored by Larry Hastings's avatar Larry Hastings

Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.

parent ea202a3f
......@@ -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.
......
......@@ -11965,6 +11965,10 @@ static char *have_functions[] = {
"HAVE_FCHOWN",
#endif
#ifdef HAVE_FCHOWNAT
"HAVE_FCHOWNAT",
#endif
#ifdef HAVE_FEXECVE
"HAVE_FEXECVE",
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment