summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle_test/test_textview.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-37628: Fix IDLE config sample sizes (#14958)Tal Einat2019-07-271-4/+56
| | | | The boxes for the font and highlight samples are now constrained by the overall config dialog size. They gain scrollbars when the when a large font size makes the samples too large for the box.
* bpo-1529353: IDLE: squeeze large output in the shell (GH-7626)Tal Einat2018-09-251-2/+5
|
* bpo-33855: Still more edits and minimal tests for IDLE (GH-7784)Terry Jan Reedy2018-06-191-6/+4
| | | | | Part 3 of 3, continuing PR #7689. This covers 14 idlelib modules and their tests, rpc to zoomheight except for run (already done) and tooltip (being done separately).
* bpo-32837: IDLE - require encoding argument for textview.view_file. (GH-5646)Terry Jan Reedy2018-02-121-3/+4
| | | | | Using the system and place-dependent default encoding for open() is a bad idea for IDLE's system and location-independent files.
* bpo-30495: IDLE: improve textview with docstrings, PEP8 names, more tests. ↵csabella2017-06-291-31/+55
| | | | | | | (#2283) Split TextViewer class into ViewWindow, ViewFrame, and TextFrame classes so that instances of the latter two can be placed with other widgets within a multiframe window. Patch by Cheryl Sabella.
* bpo-30495: IDLE: Modernize textview.py with docstrings and PEP8 names (#1839)csabella2017-05-281-10/+10
| | | | | Patch by Cheryl Sabella.
* IDLE test_textview: add comments and test, increase coverage to 100% (#1641)terryjreedy2017-05-181-9/+24
|
* bpo-30303: IDLE: Add _utest argument to textview (#1499)Louie Lu2017-05-171-1/+41
|
* Issue #27922: IDLE tests no longer flash tk widgets (Merge 3.5).Terry Jan Reedy2016-09-011-6/+8
|\
| * Issue #27922: IDLE tests no longer flash tk widgets.Terry Jan Reedy2016-09-011-5/+7
| |
| * Issue #27714: text_textview now passes when re-run in the same processTerry Jan Reedy2016-08-101-2/+1
| | | | | | | | because test_idle failed while running with test -w (and no -jn).
* | Issue #27714: text_textview now passes when re-run in the same processTerry Jan Reedy2016-08-101-2/+1
| | | | | | | | | | because test_idle failed while running with test -w (and no -jn). Prevent a non-fatal warning from test_config_key.
* | Issue #27365: partial mergeTerry Jan Reedy2016-06-221-8/+8
|\ \ | |/
* | Issue *24750: Switch all scrollbars in IDLE to ttk versions.Terry Jan Reedy2016-06-101-1/+1
| | | | | | | | Where needed, add minimal tests to cover changes.
* | Merge issue #27196 from 3.5: Stop IDLE test 'application destroyed' warnings.Terry Jan Reedy2016-06-041-1/+2
|\ \ | |/
| * Issue #27196: Stop 'application destroyed' warnings when running IDLE tests.Terry Jan Reedy2016-06-041-1/+2
| | | | | | | | The update_idletasks solution was provided by Serhiy Storchaka.
* | Issue 20567: Revise idle_test/README.txt and some tests to match new advice.Terry Jan Reedy2016-06-041-1/+2
|\ \ | |/
| * Issue 20567: Revise idle_test/README.txt and some tests to match new advice.Terry Jan Reedy2016-06-041-1/+2
| |
* | 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.
* More idlelib cleanup inspired by pyflakes.Terry Jan Reedy2014-07-021-2/+2
|
* Issue #18910: test_textView - since all tests require 'gui', make root global.Terry Jan Reedy2014-06-061-33/+34
| | | | Subclass TextViewer to add mock methods instead of monkey-patching it.
* whitespaceTerry Jan Reedy2014-06-051-1/+1
|
* Issue #18910: Add unittest for textView. Patch by Phil Webster.Terry Jan Reedy2014-06-051-0/+96