Issue 23929: Minor typo (way vs. away) in os.renames docstring (original) (raw)

Issue23929

Created on 2015-04-13 07:30 by pombredanne, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg240595 - (view) Author: Philippe Ombredanne (pombredanne) * Date: 2015-04-13 07:30
There is a minor typo in the docstring of os.renames: See https://hg.python.org/cpython/file/37905786b34b/Lib/os.py#l275 "After the rename, directories corresponding to rightmost path segments of the old name will be pruned way until [..]" This should be using away instead of way: "After the rename, directories corresponding to rightmost path segments of the old name will be pruned away until [..]"
msg240598 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2015-04-13 09:09
I think removing the word "way" would be a better improvement.
msg240814 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-04-14 00:25
New changeset 94c3cd410cf6 by Benjamin Peterson in branch '3.4': remove useless word (closes #23929) https://hg.python.org/cpython/rev/94c3cd410cf6 New changeset feb0717c1004 by Benjamin Peterson in branch '2.7': remove useless word (closes #23929) https://hg.python.org/cpython/rev/feb0717c1004 New changeset 4f90751edb4f by Benjamin Peterson in branch 'default': merge 3.4 (#23929) https://hg.python.org/cpython/rev/4f90751edb4f
History
Date User Action Args
2022-04-11 14:58:15 admin set github: 68117
2015-04-14 00:25:21 python-dev set status: open -> closednosy: + python-devmessages: + resolution: fixedstage: resolved
2015-04-13 09:09:21 eric.smith set keywords: + easy
2015-04-13 09:09:05 eric.smith set nosy: + eric.smithmessages: + versions: - Python 3.2, Python 3.3, Python 3.6
2015-04-13 07:30:11 pombredanne create