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: Make _htest, _utest parameters keyword-only.
Type: enhancement 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-30 17:47 by terry.reedy, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 3839 merged terry.reedy, 2017-09-30 18:02
PR 3841 merged terry.reedy, 2017-09-30 21:42
Messages (3)
msg303418 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-09-30 17:53
All calls in tests should pass as keyword.  Get better error message if pass wrong number of other arguments positionally.
msg303432 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-09-30 21:37
New changeset bfebfd81de21b7906df386fce845f2b1f5ffd212 by Terry Jan Reedy in branch 'master':
bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. (#3839)
https://github.com/python/cpython/commit/bfebfd81de21b7906df386fce845f2b1f5ffd212
msg303433 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-09-30 22:45
New changeset 40c54d5e1aaab91cb7df71f735112d20b5e5b755 by Terry Jan Reedy in branch '3.6':
[3.6] bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. (GH-3839) (#3841)
https://github.com/python/cpython/commit/40c54d5e1aaab91cb7df71f735112d20b5e5b755
History
Date User Action Args
2022-04-11 14:58:53adminsetgithub: 75830
2017-09-30 22:46:48terry.reedysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2017-09-30 22:45:55terry.reedysetmessages: + msg303433
2017-09-30 21:42:49terry.reedysetpull_requests: + pull_request3822
2017-09-30 21:37:56terry.reedysetmessages: + msg303432
2017-09-30 18:02:01terry.reedysetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request3820
2017-09-30 17:53:20terry.reedysetmessages: + msg303418
2017-09-30 17:47:21terry.reedycreate