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.

classification
Title: xattr functions aren't in os.supports_fd, os.supports_follow_symlinks
Type: enhancement Stage: patch review
Components: Extension Modules Versions: Python 3.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: ZackerySpytz, benjamin.peterson, osandov
Priority: normal Keywords: patch

Created on 2017-02-05 09:44 by osandov, last changed 2022-04-11 14:58 by admin.

Files
File name Uploaded Description Edit
xattrsupports.patch osandov, 2017-02-05 09:44 review
Pull Requests
URL Status Linked Edit
PR 18653 open ZackerySpytz, 2020-02-25 06:51
Messages (1)
msg287042 - (view) Author: Omar Sandoval (osandov) * Date: 2017-02-05 09:44
{get,list,remove,set}xattr all support fds and follow_symlinks, but they are not in the os.supports_fds and os.supports_follow_symlinks sets. The attached patch adds them. There are no HAVE_* features for the f and l variants of these syscalls since it's an all-or-nothing thing, so we always add them if the functions are defined.
History
Date User Action Args
2022-04-11 14:58:42adminsetgithub: 73636
2020-02-25 06:51:56ZackerySpytzsetnosy: + ZackerySpytz

pull_requests: + pull_request18014
stage: patch review
2017-02-05 09:44:20osandovcreate