mirror of
https://github.com/python/cpython.git
synced 2025-11-03 19:34:08 +00:00
Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
This commit is contained in:
parent
ba5517d4c0
commit
00964ed216
2 changed files with 6 additions and 0 deletions
|
|
@ -12,6 +12,8 @@ What's New in Python 3.3.3 release candidate 1?
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
|
||||||
|
|
||||||
- Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc()
|
- Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc()
|
||||||
fails.
|
fails.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11965,6 +11965,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