[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Berker Peksag
Berker Peksag added the comment: New changeset 39fcd9949832323b672f7ff05fd1498b8844a329 by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-34329: Doc'd how to remove suffix of pathlib.Path() (GH-8655) https://github.com/python/cpython/commit/39fcd9949832323b672f7ff05fd1498b8844a329

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Berker Peksag
Berker Peksag added the comment: New changeset 764f9d09b03654d7cd70d59afafafd51d24f2750 by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-34329: Doc'd how to remove suffix of pathlib.Path() (GH-8655) https://github.com/python/cpython/commit/764f9d09b03654d7cd70d59afafafd51d24f2750

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +8157 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +8156 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Berker Peksag
Berker Peksag added the comment: New changeset 46dc4e34ed8005a688d7f3512844ef227a3465f4 by Berker Peksag (Stefan Otte) in branch 'master': bpo-34329: Doc'd how to remove suffix of pathlib.Path() (GH-8655) https://github.com/python/cpython/commit/46dc4e34ed8005a688d7f3512844ef227a3465f4

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Berker Peksag
Berker Peksag added the comment: This seems like a reasonable request. The feature was added in https://github.com/python/cpython/commit/e50dafcd636ba32db890600164698bb070d40d97 (issue 20639) in Python 3.4. I'd normally suggest adding a ".. versionchanged:: 3.4" marker, but since the

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: It's the same thing for everything, for example, in Karate, you will start with the white belt and with practice, you will get the black belt. Thank you again for your contribution. -- ___ Python tracker

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Stefan Otte
Stefan Otte added the comment: No problem, I'm just excited to contribute to python (as small as the contribution might be) :) -- ___ Python tracker ___

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: yep, it's a manual modification in b.p.o but after that, we can check your PR. thank you for your patience. -- ___ Python tracker ___

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Stefan Otte
Stefan Otte added the comment: I'm waiting for the CLA to be accepted. I'll get back to you ASAP. -- ___ Python tracker ___ ___

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Good catch, thank you. Could you sign the CLA, without the CLA, we can't process your PR. Thank you -- nosy: +matrixise ___ Python tracker

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Stefan Otte
Change by Stefan Otte : -- keywords: +patch pull_requests: +8150 stage: -> patch review ___ Python tracker ___ ___

[issue34329] Document how to remove a suffix with pathlib.Path.with_suffix

2018-08-03 Thread Stefan Otte
New submission from Stefan Otte : Hello folks! I didn't realize that you can remove a suffix with the `with_suffix` function of the `Path` class of `pathlib` and I always used a little utility function that I wrote. I wanted to add that functionality (removing of a suffix) and submit a PR