[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the report, Bob! -- keywords: -newcomer friendly resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8, Python 3.9 ___ Python tracker

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Zachary Ware added the comment: New changeset a774ac6637e8f155a28b7733a0a93d4a680584d4 by Zachary Ware in branch '3.7': [3.7] bpo-38409: Fix grammar in str.strip() docstring (GH-16682) (GH-16686) https://github.com/python/cpython/commit/a774ac6637e8f155a28b7733a0a93d4a680584d4 -- _

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Zachary Ware added the comment: New changeset 0baa6b3c7d9ef1d96f10939c40f8ff95aba9155b by Zachary Ware (Miss Islington (bot)) in branch '3.8': bpo-38409: Fix grammar in str.strip() docstring (GH-16682) (GH-16684) https://github.com/python/cpython/commit/0baa6b3c7d9ef1d96f10939c40f8ff95aba9155

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: +16272 pull_request: https://github.com/python/cpython/pull/16686 ___ Python tracker ___

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Zachary Ware added the comment: New changeset 09895c27cd8ff60563a794016e8c099bc897cc74 by Zachary Ware in branch 'master': bpo-38409: Fix grammar in str.strip() docstring (GH-16682) https://github.com/python/cpython/commit/09895c27cd8ff60563a794016e8c099bc897cc74 -- nosy: +zach.ware

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +16270 pull_request: https://github.com/python/cpython/pull/16684 ___ Python tracker ___ __

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: +16268 pull_request: https://github.com/python/cpython/pull/16682 ___ Python tracker ___

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Hansraj Das
Change by Hansraj Das : -- pull_requests: +16267 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16681 ___ Python tracker ___ _

[issue38409] Typo in doc string for str.strip

2019-10-08 Thread Hansraj Das
Change by Hansraj Das : -- nosy: +hansrajdas ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue38409] Typo in doc string for str.strip

2019-10-08 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks for the patch and report. CPython now accepts GitHub pull requests https://devguide.python.org/pullrequest/ -- nosy: +xtreak ___ Python tracker ___

[issue38409] Typo in doc string for str.strip

2019-10-08 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +newcomer friendly ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue38409] Typo in doc string for str.strip

2019-10-08 Thread Bob Dowling
New submission from Bob Dowling : The doc string for str.strip() has a typo: the "d" at the end of "removed" is missing. help(str.strip) Currently: Return a copy of the string with leading and trailing whitespace remove. Should be: Return a copy of the string with leading and trailing whites