Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-37627: Initialize IDLE Custom Run dialog with previous entries (#14870) | Ngalim Siregar | 2019-07-21 | 1 | -2/+6 |
| | | | Repeat the command line arguments most recently entered before so the user can edit them. | ||||
* | bpo-37325: Fix focus traversal for 2 IDLE dialogs (#14209) | Terry Jan Reedy | 2019-06-18 | 1 | -21/+35 |
| | | | Tab now moves focus across and down for Help Source and Custom Run. | ||||
* | bpo-5680: IDLE: Customize running a module (GH-13763) | Cheryl Sabella | 2019-06-18 | 1 | -5/+52 |
| | | | 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-33987: IDLE - use ttk Frame for ttk widgets (GH-11395) | Terry Jan Reedy | 2019-01-03 | 1 | -1/+0 |
| | |||||
* | bpo-34120: fix IDLE freezing after closing dialogs (GH-8603) | Tal Einat | 2018-08-02 | 1 | -0/+4 |
| | | | | Added missing .grab_release() calls to all places where we call .grab_set(). | ||||
* | bpo-33855: More edits and new minimal tests for IDLE (GH-7761) | Terry Jan Reedy | 2018-06-18 | 1 | -2/+2 |
| | | | | Part 2 of 3. Continues PR #7689, changeset ee5ef30. Edit and add tests for 18 modules, help_about to replace and run. | ||||
* | bpo-29919: Remove unused imports found by pyflakes (#137) | Victor Stinner | 2017-03-27 | 1 | -1/+1 |
| | | | Make also minor PEP8 coding style fixes on modified imports. | ||||
* | Issue #27891: Consistently group and sort imports within idlelib modules. | Terry Jan Reedy | 2016-08-31 | 1 | -1/+2 |
| | |||||
* | Issue #27621: Put query response validation error messages in query box | Terry Jan Reedy | 2016-08-10 | 1 | -52/+72 |
| | | | | | instead of in separate massagebox. Redo tests to match. Add Mac OSX refinements. Original patch by Mark Roseman. | ||||
* | Issue #27620: Mark the default action button as the default. | Terry Jan Reedy | 2016-07-28 | 1 | -1/+1 |
| | |||||
* | Issue #27620: Escape key closes Query box as cancelled. | Terry Jan Reedy | 2016-07-26 | 1 | -0/+1 |
| | |||||
* | Issue #27380: IDLE: add query.HelpSource class and tests. | Terry Jan Reedy | 2016-07-08 | 1 | -36/+127 |
| | | | | Remove modules that are combined in new module. | ||||
* | Issue 27437: Add query.ModuleName and use it for file => Load Module. | Terry Jan Reedy | 2016-07-03 | 1 | -18/+65 |
| | | | | Users can now edit bad entries instead of starting over. | ||||
* | Issue #27380: IDLE: add base Query dialog, with ttk widgets and subclass | Terry Jan Reedy | 2016-06-27 | 1 | -0/+148 |
SectionName. These split class GetCfgSectionNameDialog from configSectionNameDialog.py, temporarily renamed config_sec.py in 3.7.9a2. More Query subclasses are planned. |