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: IDLE: remove unused code in pyparse module
Type: behavior Stage: resolved
Components: IDLE Versions: Python 3.8, Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: miss-islington, terry.reedy
Priority: normal Keywords: patch

Created on 2018-02-22 05:06 by terry.reedy, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 5807 merged terry.reedy, 2018-02-22 05:12
PR 5808 merged miss-islington, 2018-02-22 06:20
PR 5809 merged miss-islington, 2018-02-22 06:21
Messages (4)
msg312534 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2018-02-22 05:27
Spinoff from #32880.
msg312394: dump duplicates print, except that sys.__stdout__ may be None.
msg312395: lastopenbracketpos is now always initialized in _study2, as was stmt_bracketing.  get_last_open_bracket_pos is never called.

Test are adjusted for removals.
msg312536 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2018-02-22 06:19
New changeset 451d1edaf4d27c4e632d81246d308e8dd6ea945f by Terry Jan Reedy in branch 'master':
bpo-32905: IDLE - remove unused code in pyparse module (GH-5807)
https://github.com/python/cpython/commit/451d1edaf4d27c4e632d81246d308e8dd6ea945f
msg312538 - (view) Author: miss-islington (miss-islington) Date: 2018-02-22 06:41
New changeset dfa1144582e19e5fee2c07e6b7e281da1bef7782 by Miss Islington (bot) in branch '3.7':
bpo-32905: IDLE - remove unused code in pyparse module (GH-5807)
https://github.com/python/cpython/commit/dfa1144582e19e5fee2c07e6b7e281da1bef7782
msg312540 - (view) Author: miss-islington (miss-islington) Date: 2018-02-22 07:04
New changeset d8e7b98b17cd2cc15b307f54a768c9ca31072b5f by Miss Islington (bot) in branch '3.6':
bpo-32905: IDLE - remove unused code in pyparse module (GH-5807)
https://github.com/python/cpython/commit/d8e7b98b17cd2cc15b307f54a768c9ca31072b5f
History
Date User Action Args
2022-04-11 14:58:58adminsetgithub: 77086
2018-02-22 08:11:12terry.reedysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-02-22 07:04:07miss-islingtonsetmessages: + msg312540
2018-02-22 06:41:43miss-islingtonsetnosy: + miss-islington
messages: + msg312538
2018-02-22 06:21:11miss-islingtonsetpull_requests: + pull_request5586
2018-02-22 06:20:15miss-islingtonsetstage: test needed -> patch review
pull_requests: + pull_request5585
2018-02-22 06:19:04terry.reedysetmessages: + msg312536
2018-02-22 05:54:22terry.reedysettitle: IDLE pyparse: fix initialization and remove unused code -> IDLE: remove unused code in pyparse module
2018-02-22 05:27:45terry.reedysetmessages: + msg312534
stage: patch review -> test needed
2018-02-22 05:12:53terry.reedysetkeywords: + patch
stage: test needed -> patch review
pull_requests: + pull_request5584
2018-02-22 05:06:47terry.reedylinkissue32880 dependencies
2018-02-22 05:06:20terry.reedycreate