Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
This commit is contained in:
parent
ba5517d4c0
commit
00964ed216
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue