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: disable ZzDummy, revise tests to match
Type: behavior Stage: resolved
Components: IDLE Versions: Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: terry.reedy
Priority: normal Keywords: patch

Created on 2017-09-14 21:48 by terry.reedy, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 3590 merged terry.reedy, 2017-09-14 22:29
PR 3591 merged python-dev, 2017-09-14 22:52
Messages (3)
msg302215 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-09-14 21:48
When the zzdummy example-test extension was added as part of #27099, it was enabled in config-extensions.def in order to make tests pass as they were.  This was not intended to be permanent as it adds a menu item that changes the current file and a user-modifiable event-key pair to the keys list on the config dialog keys page.

Disable it by default (in config-extensions.def) and fix the tests so that they pass.  This should primarily mean adding a enable entry to userCfg['extensions'].
msg302222 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-09-14 22:51
New changeset d384a81f557dab0b142bfcc9850bc68df46496ef by Terry Jan Reedy in branch 'master':
bpo-31480: IDLE - fix tests to pass with zzdummy extension disabled. (#3590)
https://github.com/python/cpython/commit/d384a81f557dab0b142bfcc9850bc68df46496ef
msg302226 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-09-15 00:34
New changeset 7b62416d86dce368470c5d1acbb55295a23d87f8 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.6':
[3.6] bpo-31480: IDLE - fix tests to pass with zzdummy extension disabled. (GH-3590) (#3591)
https://github.com/python/cpython/commit/7b62416d86dce368470c5d1acbb55295a23d87f8
History
Date User Action Args
2022-04-11 14:58:52adminsetgithub: 75661
2017-09-15 00:35:10terry.reedysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2017-09-15 00:34:46terry.reedysetmessages: + msg302226
2017-09-14 22:52:04python-devsetpull_requests: + pull_request3582
2017-09-14 22:51:53terry.reedysetmessages: + msg302222
2017-09-14 22:29:02terry.reedysetkeywords: + patch
stage: test needed -> patch review
pull_requests: + pull_request3581
2017-09-14 21:48:03terry.reedycreate