This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Remove trailing whitespaces
Type: Stage: resolved
Components: Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, serhiy.storchaka, terry.reedy
Priority: normal Keywords: patch

Created on 2017-09-14 05:50 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 3564 merged serhiy.storchaka, 2017-09-14 05:53
PR 3594 merged terry.reedy, 2017-09-15 01:16
Messages (5)
msg302140 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-09-14 05:50
Proposed PR removes trailing whitespaces from CPython source files. Some of them were added since the last trailing whitespaces removing. Some text files were omitted in previous trailing whitespaces removings. Now I consider them safe to cleanup.
msg302144 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-09-14 06:38
New changeset 13ad3b7a82bf56d803fbe48ee5df6c4b08986c78 by Serhiy Storchaka in branch 'master':
bpo-31462: Remove trailing whitespaces. (#3564)
https://github.com/python/cpython/commit/13ad3b7a82bf56d803fbe48ee5df6c4b08986c78
msg302173 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-09-14 15:31
I plan to backport the idlelib changes.  Do you prefer than I try to include other files (by using cherry-pick) or only do idlelib (probably much easier)?
msg302180 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-09-14 16:38
Usually we don't backport such kind of changes. And I afraid that cherry-picking would be with many conflicts, because many changes are in new code. The idlelib changes are more harmless, since they are in text files.
msg302229 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-09-15 02:52
New changeset 93d5f91fff5740b463980797a04f3d5f1d5f1a51 by Terry Jan Reedy in branch '3.6':
[3.6] bpo-31462: IDLE - remove trailing whitespaces (GH-3564) (#3594)
https://github.com/python/cpython/commit/93d5f91fff5740b463980797a04f3d5f1d5f1a51
History
Date User Action Args
2022-04-11 14:58:52adminsetgithub: 75643
2017-09-15 02:52:20terry.reedysetmessages: + msg302229
2017-09-15 01:16:58terry.reedysetpull_requests: + pull_request3585
2017-09-14 16:38:09serhiy.storchakasetmessages: + msg302180
2017-09-14 15:31:26terry.reedysetnosy: + terry.reedy
messages: + msg302173
2017-09-14 06:39:03serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2017-09-14 06:38:38serhiy.storchakasetmessages: + msg302144
2017-09-14 05:53:18serhiy.storchakasetkeywords: + patch
pull_requests: + pull_request3553
2017-09-14 05:50:09serhiy.storchakacreate