[issue37129] Add os.RWF_APPEND flag for os.pwritev

2020-05-27 Thread STINNER Victor
STINNER Victor added the comment: Thanks YoSTEALTH. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue37129] Add os.RWF_APPEND flag for os.pwritev

2020-05-27 Thread STINNER Victor
STINNER Victor added the comment: New changeset 76ef255bde772005bbd0761399b274c2240e61d3 by YoSTEALTH in branch 'master': bpo-37129: Add os.RWF_APPEND flag for os.pwritev() (GH-20336) https://github.com/python/cpython/commit/76ef255bde772005bbd0761399b274c2240e61d3 --

[issue37129] Add os.RWF_APPEND flag for os.pwritev

2020-05-23 Thread YoSTEALTH
YoSTEALTH added the comment: terry.reedy ok, recreated the patch. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue37129] Add os.RWF_APPEND flag for os.pwritev

2020-05-23 Thread YoSTEALTH
Change by YoSTEALTH : -- pull_requests: +19604 pull_request: https://github.com/python/cpython/pull/20336 ___ Python tracker ___

[issue37129] Add os.RWF_APPEND flag for os.pwritev

2020-05-23 Thread YoSTEALTH
Change by YoSTEALTH : -- keywords: +patch pull_requests: +19603 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20335 ___ Python tracker

[issue37129] Add os.RWF_APPEND flag for os.pwritev

2020-05-22 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: -Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37129] Add os.RWF_APPEND flag for os.pwritev

2020-05-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: YoSTEALTH, are you both allowed and willing to do so? The patch is not completely trivial and you seem to have the needed knowledge. (I don't.) -- ___ Python tracker

[issue37129] Add os.RWF_APPEND flag for os.pwritev

2020-05-22 Thread Cheryl Sabella
Cheryl Sabella added the comment: The PR for this issue has been closed, but the issue is now open for someone else to make a PR for it. Please credit the original author in the new PR. -- keywords: -patch nosy: +cheryl.sabella stage: patch review -> needs patch versions: +Python

[issue37129] Add os.RWF_APPEND flag for os.pwritev

2019-06-11 Thread Gregory P. Smith
Gregory P. Smith added the comment: This is just adding a missing constant (when defined at CPython compile time) to the os module. I suggest landing this in 3.8 as well assuming we're still in the beta cycles when the PR is ready. It isn't a functional change. -- nosy:

[issue37129] Add os.RWF_APPEND flag for os.pwritev

2019-06-07 Thread Terry J. Reedy
New submission from Terry J. Reedy : Issues need a more complete title and at least *some* explanation. -- nosy: +terry.reedy title: Add RWF_APPEND flag -> Add os.RWF_APPEND flag for os.pwritev versions: +Python 3.9 -Python 3.8 ___ Python tracker