summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle_test/test_query.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-37627: Initialize IDLE Custom Run dialog with previous entries (#14870)Ngalim Siregar2019-07-211-4/+6
| | | Repeat the command line arguments most recently entered before so the user can edit them.
* bpo-5680: IDLE: Customize running a module (GH-13763)Cheryl Sabella2019-06-181-27/+78
| | | The initialize options are 1) add command line options, which are appended to sys.argv as if passed on a real command line, and 2) skip the shell restart. The customization dialog is accessed by a new entry on the Run menu.
* bpo-33855: More edits and new minimal tests for IDLE (GH-7761)Terry Jan Reedy2018-06-181-7/+5
| | | | Part 2 of 3. Continues PR #7689, changeset ee5ef30. Edit and add tests for 18 modules, help_about to replace and run.
* Fix idlelib comment typos reported by Mike on pull request 4803. (#4807)Terry Jan Reedy2017-12-121-1/+1
|
* bpo-30642: IDLE: Fix test_query refleak (#2147)mlouielu2017-06-131-0/+1
| | | Patch by Louie Lu.
* Issue #27922: IDLE tests no longer flash tk widgets (Merge 3.5).Terry Jan Reedy2016-09-011-0/+4
|
* Issue #27380: For test_query on Mac, adjust one expected result.Terry Jan Reedy2016-08-101-1/+3
|
* Issue #27621: Put query response validation error messages in query boxTerry Jan Reedy2016-08-101-142/+93
| | | | | instead of in separate massagebox. Redo tests to match. Add Mac OSX refinements. Original patch by Mark Roseman.
* Issue #27626: Further spelling fixes for 3.6Martin Panter2016-07-281-1/+1
|
* WhitespaceTerry Jan Reedy2016-07-081-1/+1
|
* Issue #27380: IDLE: add query.HelpSource class and tests.Terry Jan Reedy2016-07-081-30/+184
| | | | Remove modules that are combined in new module.
* Issue 27437: Add query.ModuleName and use it for file => Load Module.Terry Jan Reedy2016-07-031-16/+94
| | | | Users can now edit bad entries instead of starting over.
* Issue #27380: IDLE: add base Query dialog, with ttk widgets and subclassTerry Jan Reedy2016-06-271-0/+164
SectionName. These split class GetCfgSectionNameDialog from configSectionNameDialog.py, temporarily renamed config_sec.py in 3.7.9a2. More Query subclasses are planned.