diff options
author | YoSTEALTH <35307184+YoSTEALTH@users.noreply.github.com> | 2020-05-27 21:32:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-27 21:32:22 (GMT) |
commit | 76ef255bde772005bbd0761399b274c2240e61d3 (patch) | |
tree | d292b61c01295213a7baa5c27abf5658caa2df00 /Modules/clinic | |
parent | e4799b95945b44eb0e2eea26473db8e0a49ed0ee (diff) | |
download | cpython-76ef255bde772005bbd0761399b274c2240e61d3.zip cpython-76ef255bde772005bbd0761399b274c2240e61d3.tar.gz cpython-76ef255bde772005bbd0761399b274c2240e61d3.tar.bz2 |
bpo-37129: Add os.RWF_APPEND flag for os.pwritev() (GH-20336)
Diffstat (limited to 'Modules/clinic')
-rw-r--r-- | Modules/clinic/posixmodule.c.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/clinic/posixmodule.c.h b/Modules/clinic/posixmodule.c.h index 6f180ab..96ea020 100644 --- a/Modules/clinic/posixmodule.c.h +++ b/Modules/clinic/posixmodule.c.h @@ -5517,6 +5517,7 @@ PyDoc_STRVAR(os_pwritev__doc__, "\n" "- RWF_DSYNC\n" "- RWF_SYNC\n" +"- RWF_APPEND\n" "\n" "Using non-zero flags requires Linux 4.7 or newer."); @@ -8876,4 +8877,4 @@ exit: #ifndef OS_WAITSTATUS_TO_EXITCODE_METHODDEF #define OS_WAITSTATUS_TO_EXITCODE_METHODDEF #endif /* !defined(OS_WAITSTATUS_TO_EXITCODE_METHODDEF) */ -/*[clinic end generated code: output=b97bbc8cb5078540 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=9623b9e6f3809842 input=a9049054013a1b77]*/ |