This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author salinger
Recipients salinger
Date 2013-08-06.06:54:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375772087.0.0.361755653525.issue18667@psf.upfronthosting.co.za>
In-reply-to
Content
During test on kfreebsd:

test_chown_dir_fd (test.test_posix.PosixTester) ... skipped 'test needs dir_fd support in os.chown()'

But all *AT syscalls are supported.
It looks like posixmodule.c misses propagation of that fact.

--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -12004,6 +12004,10 @@
     "HAVE_FCHOWN",
 #endif
 
+#ifdef HAVE_FCHOWNAT
+    "HAVE_FCHOWNAT",
+#endif
+
 #ifdef HAVE_FEXECVE
     "HAVE_FEXECVE",
 #endif
History
Date User Action Args
2013-08-06 06:54:47salingersetrecipients: + salinger
2013-08-06 06:54:46salingersetmessageid: <1375772087.0.0.361755653525.issue18667@psf.upfronthosting.co.za>
2013-08-06 06:54:46salingerlinkissue18667 messages
2013-08-06 06:54:46salingercreate