mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
This commit is contained in:
commit
e70f2d588a
2 changed files with 6 additions and 0 deletions
|
|
@ -10,6 +10,8 @@ Projected Release date: 2013-09-08
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
|
||||||
|
|
||||||
- Issue #16499: Add command line option for isolated mode.
|
- Issue #16499: Add command line option for isolated mode.
|
||||||
|
|
||||||
- Issue #15301: Parsing fd, uid, and gid parameters for builtins
|
- Issue #15301: Parsing fd, uid, and gid parameters for builtins
|
||||||
|
|
|
||||||
|
|
@ -11567,6 +11567,10 @@ static char *have_functions[] = {
|
||||||
"HAVE_FCHOWN",
|
"HAVE_FCHOWN",
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_FCHOWNAT
|
||||||
|
"HAVE_FCHOWNAT",
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_FEXECVE
|
#ifdef HAVE_FEXECVE
|
||||||
"HAVE_FEXECVE",
|
"HAVE_FEXECVE",
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue