summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle_test/test_parenmatch.py
Commit message (Collapse)AuthorAgeFilesLines
* 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-31488: IDLE - update former extensions when options change. (#3612)Terry Jan Reedy2017-09-161-1/+1
| | | | | When apply changes, call .reload on each class with non-key options. Change ParenMatch so that updates affect current instances.
* bpo-30723: IDLE -- Enhance parenmatch; add style, flash, and help (#2306)wohlganger2017-06-281-37/+31
| | | | | | | | | * Add 'parens' style to highlight both opener and closer. * Make 'default' style, which is not default, a synonym for 'opener'. * Make time-delay work the same with all styles. * Add help for config dialog extensions tab, including parenmatch. * Add new tests. Original patch by Charles Wohlganger.
* bpo-29910: IDLE no longer deletes a character after commenting out a region ↵Serhiy Storchaka2017-06-271-4/+4
| | | | | | | | | | | (#825) This happened because shortcut has a class binding and 'break' was not returned. Fix other potential conflicts between IDLE and default key bindings. * Add news item * Update NEWS
* bpo-27922: Stop gui flash from idle_test.test_parenmatch (#2171)terryjreedy2017-06-131-0/+1
| | | For unknown reasons, this does not work when running leak tests.
* Issue #27732: Silence test_idle with dummy bell functions.Terry Jan Reedy2016-08-111-4/+9
|
* Merge issue #27196 from 3.5: Stop IDLE test 'application destroyed' warnings.Terry Jan Reedy2016-06-041-3/+6
|\
| * Issue #27196: Stop 'application destroyed' warnings when running IDLE tests.Terry Jan Reedy2016-06-041-3/+6
| | | | | | | | The update_idletasks solution was provided by Serhiy Storchaka.
* | Issue #24225: Within idlelib files, update idlelib module names.Terry Jan Reedy2016-05-281-2/+2
|/ | | | | | | | | | | | | | | | This follows the previous patch that changed idlelib file names. Class names that matched old module names are not changed. Change idlelib imports in turtledemo.__main__. Exception: config-extensions.def. Previously, extension section names, file names, and class names had to match. Changing section names would create cross-version conflicts in config-extensions.cfg (user customizations). Instead map old names to new file names at point of import in editor.EditorWindow.load_extension. Patch extensively tested with test_idle, idle_test.htest.py, a custom import-all test, running IDLE in a console to catch messages, and testing each menu item. Based on a patch by Al Sweigart.
* Issue #21939: Test IDLE percolator. Original patch by Saimadhav Heblikar.Terry Jan Reedy2016-05-181-2/+2
|
* Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar.Terry Jan Reedy2014-06-171-0/+109