[Python-checkins] cpython (3.3): Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
larry.hastings
python-checkins at python.org
Mon Aug 12 19:50:03 CEST 2013
http://hg.python.org/cpython/rev/a89226508a04
changeset: 85129:a89226508a04
branch: 3.3
parent: 85124:edaf44136d32
user: Larry Hastings <larry at hastings.org>
date: Mon Aug 12 13:49:30 2013 -0400
summary:
Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
files:
Misc/NEWS | 2 ++
Modules/posixmodule.c | 4 ++++
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@
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.
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -11965,6 +11965,10 @@
"HAVE_FCHOWN",
#endif
+#ifdef HAVE_FCHOWNAT
+ "HAVE_FCHOWNAT",
+#endif
+
#ifdef HAVE_FEXECVE
"HAVE_FEXECVE",
#endif
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list