-
- Notifications
You must be signed in to change notification settings - Fork 33.3k
bpo-30917: IDLE: Add config.IdleConf unittest #2691
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 7 commits
Commits
Show all changes
22 commits Select commit Hold shift + click to select a range
4d90afc bpo-30917: IDLE: Add config.IdleConf unittest
mlouielu 9fc7670 Add pragma to exclude coverage count
mlouielu d4dac80 Add unittest
mlouielu eb32d91 Add gui requires
mlouielu ddedbc7 Revert "Add pragma to exclude coverage count"
mlouielu 06d8329 Add MacOS specific test correct
mlouielu f29e0da Split get_user_config_dir to unix and windows
mlouielu 3f2fdcc Remove unused import
mlouielu e445a0e Destroy tk.root after test cases end
mlouielu 0f1607d Add skipIf at get_user_cfg_dir test
mlouielu 980a801 Update mock_config to deepcopy make it faster
mlouielu 4ecfb1a Add comment explain why put extra_help_source_list in same test
mlouielu d9b3702 Add disable extension to unittest
mlouielu 511b726 Add get_keybinding unittest
mlouielu 49e0534 Add save_user_cfg_files unittest
mlouielu 7fba576 News blurb
terryjreedy 206ae1e supress warnintg, update coverage
terryjreedy c850b7f Update 2017-07-17-23-35-57.bpo-30917.hSiuuO.rst
terryjreedy ef45060 Addressed terry's comments
mlouielu 7627733 Put extra help source list input data reverse to check it is sorted
mlouielu 2cbb960 Merge branch 'add_idleconf_unittest' of github.com:mlouielu/cpython i…
mlouielu c94d4b5 Remove sorted in RemoveKeyBindNames
mlouielu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The original deleted in_place and did not sort. It was a roundabout version of
I checked that in-place and sorted are not needed. In fact, when doing cleanups, this should be a set comprehension. The using code can then use set union in place of 3 current lines.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was the
sortedto be removed?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will if I feel like it.