mirror of https://github.com/python/cpython
Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
This commit is contained in:
commit
e70f2d588a
|
@ -10,6 +10,8 @@ Projected Release date: 2013-09-08
|
|||
Core and Builtins
|
||||
-----------------
|
||||
|
||||
- Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
|
||||
|
||||
- Issue #16499: Add command line option for isolated mode.
|
||||
|
||||
- Issue #15301: Parsing fd, uid, and gid parameters for builtins
|
||||
|
|
|
@ -11567,6 +11567,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