[Python-checkins] cpython (merge 3.3 -> default): Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.

larry.hastings python-checkins at python.org
Mon Aug 12 19:53:37 CEST 2013


http://hg.python.org/cpython/rev/92de1a5dc3ea
changeset:   85130:92de1a5dc3ea
parent:      85128:2294594fbe6c
parent:      85129:a89226508a04
user:        Larry Hastings <larry at hastings.org>
date:        Mon Aug 12 13:53:20 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
@@ -10,6 +10,8 @@
 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
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -11567,6 +11567,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