summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/query.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.9] bpo-43655: Tkinter and IDLE dialog windows are now recognized as ↵Miss Islington (bot)2021-04-251-7/+3
| | | | | | | | dialogs by window managers on macOS and X Window (GH-25187). (GH-25588) (GH-25592) (cherry picked from commit 3bb3fb3be09d472a43cdc3d9d9578bd49f3dfb8c) (cherry picked from commit 9a165399aec930f27639dd173426ccc33586662b) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* bpo-41144: Fix IDLE open module error (GH-21182)Miss Islington (bot)2020-06-281-7/+14
| | | | | | | | Could not open os.path. Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> (cherry picked from commit 8ab77c6f9fb6ef86af8f6b8722a2fcb37438edd0) Co-authored-by: E-Paine <63801254+E-Paine@users.noreply.github.com>
* bpo-27115: Use Query subclass for IDLE editor Goto (GH-18871)Miss Islington (bot)2020-03-091-0/+16
| | | | | | | Replace tkinter tkSimpleDialog.askinteger with a standard IDLE query dialog. The new box checks for positivity before returning. (cherry picked from commit 363fab83b8a0e6d924c7a7c577feec6a2812bb8c) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
* bpo-27115: Move IDLE Query error blanking (GH-18868)Miss Islington (bot)2020-03-091-5/+2
| | | | | | | Move required blanking of error text to non-overridden entry_ok(). (Omit news item.) (cherry picked from commit e53a3932cb01683b0fa8a7448ca25a2e658c39e6) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
* bpo-37627: Initialize IDLE Custom Run dialog with previous entries (GH-14870)Miss Islington (bot)2019-07-211-2/+6
| | | | | | Repeat the command line arguments most recently entered before so the user can edit them. (cherry picked from commit 35b87e6001bd991f625abe305951c77ddeb9a9c5) Co-authored-by: Ngalim Siregar <ngalim.siregar@gmail.com>
* bpo-37325: Fix focus traversal for 2 IDLE dialogs (GH-14209)Miss Islington (bot)2019-06-181-21/+35
| | | | | | Tab now moves focus across and down for Help Source and Custom Run. (cherry picked from commit 54cf2e0780ca137dd9abea5d3d974578ce0c18a9) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
* bpo-5680: IDLE: Customize running a module (GH-13763)Miss Islington (bot)2019-06-181-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. (cherry picked from commit 201bc2d18b60adb05810d2a6ab396047bc527088) Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
* bpo-33987: IDLE - use ttk Frame for ttk widgets (GH-11395)Terry Jan Reedy2019-01-031-1/+0
|
* bpo-34120: fix IDLE freezing after closing dialogs (GH-8603)Tal Einat2018-08-021-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 Reedy2018-06-181-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 Stinner2017-03-271-1/+1
| | | Make also minor PEP8 coding style fixes on modified imports.
* Issue #27891: Consistently group and sort imports within idlelib modules.Terry Jan Reedy2016-08-311-1/+2
|
* Issue #27621: Put query response validation error messages in query boxTerry Jan Reedy2016-08-101-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 Reedy2016-07-281-1/+1
|
* Issue #27620: Escape key closes Query box as cancelled.Terry Jan Reedy2016-07-261-0/+1
|
* Issue #27380: IDLE: add query.HelpSource class and tests.Terry Jan Reedy2016-07-081-36/+127
| | | | 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-18/+65
| | | | 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/+148
SectionName. These split class GetCfgSectionNameDialog from configSectionNameDialog.py, temporarily renamed config_sec.py in 3.7.9a2. More Query subclasses are planned.