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

This commit is contained in:
Larry Hastings 2013-08-12 13:49:30 -04:00
parent ba5517d4c0
commit 00964ed216
2 changed files with 6 additions and 0 deletions

View file

@ -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.

View file

@ -11965,6 +11965,10 @@ static char *have_functions[] = {
"HAVE_FCHOWN",
#endif
#ifdef HAVE_FCHOWNAT
"HAVE_FCHOWNAT",
#endif
#ifdef HAVE_FEXECVE
"HAVE_FEXECVE",
#endif