| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | IDLE: Fix 2 typos found by Min ho Kim. (GH-15617) | Terry Jan Reedy | 2019-08-30 | 2 | -2/+2 |
| | | |||||
| * | bpo-37824: Properly handle user input warnings in IDLE shell. (GH-15500) | Terry Jan Reedy | 2019-08-26 | 2 | -14/+9 |
| | | | | Cease turning SyntaxWarnings into SyntaxErrors. | ||||
| * | bpo-37929: IDLE: avoid Squeezer-related config dialog crashes (GH-15452) | Tal Einat | 2019-08-25 | 3 | -50/+26 |
| | | | | | | | | | | These were caused by keeping around a reference to the Squeezer instance and calling it's load_font() upon config changes, which sometimes happened even if the shell window no longer existed. This change completely removes that mechanism, instead having the editor window properly update its width attribute, which can then be used by Squeezer. | ||||
| * | Unmark files as executable that can't actually be executed. (GH-15353) | Greg Price | 2019-08-21 | 1 | -0/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are plenty of legitimate scripts in the tree that begin with a `#!`, but also a few that seem to be marked executable by mistake. Found them with this command -- it gets executable files known to Git, filters to the ones that don't start with a `#!`, and then unmarks them as executable: $ git ls-files --stage \ | perl -lane 'print $F[3] if (!/^100644/)' \ | while read f; do head -c2 "$f" | grep -qxF '#!' \ || chmod a-x "$f"; \ done Looking at the list by hand confirms that we didn't sweep up any files that should have the executable bit after all. In particular * The `.psd` files are images from Photoshop. * The `.bat` files sure look like things that can be run. But we have lots of other `.bat` files, and they don't have this bit set, so it must not be needed for them. Automerge-Triggered-By: @benjaminp | ||||
| * | bpo-37849: IDLE: fix completion window positioning above line (GH-15267) | Tal Einat | 2019-08-14 | 2 | -2/+18 |
| | | |||||
| * | bpo-36419: IDLE - Refactor autocompete and improve testing. (#15121) | Terry Jan Reedy | 2019-08-04 | 3 | -177/+216 |
| | | |||||
| * | bpo-37748: Re-order the Run menu. (GH-15115) | Terry Jan Reedy | 2019-08-04 | 3 | -23/+29 |
| | | | | Put the most common choice, Run Module, at the top. | ||||
| * | bpo-37706: IDLE - fix sidebar code bug and drag tests (GH-15103) | Tal Einat | 2019-08-04 | 3 | -35/+61 |
| | | | | Convert mouse y to line number in the sidebar rather than the text. | ||||
| * | bpo-34162: Add missing items to idlelib/NEWS.txt. (GH-15034) | Terry Jan Reedy | 2019-07-31 | 1 | -0/+11 |
| | | |||||
| * | Fix idlelib typos discovered by min ho, pr 15018. (GH-15029) | Terry Jan Reedy | 2019-07-30 | 6 | -9/+9 |
| | | |||||
| * | bpo-34162: Update idlelib/news.txt. (#15011) | Terry Jan Reedy | 2019-07-29 | 1 | -0/+24 |
| | | |||||
| * | bpo-37706: Disable 3 IDLE scrollbar tests on Mac. (#15010) | Terry Jan Reedy | 2019-07-29 | 1 | -7/+29 |
| | | | | They pass with tk 8.5.9 (Azure) but fail with the 8.6.x we install. | ||||
| * | bpo-37692: Improve highlight config sample (#14983) | Terry Jan Reedy | 2019-07-28 | 1 | -18/+17 |
| | | | | Use an example shell interaction in the sample and better labels for shell elements. | ||||
| * | bpo-37628: Fix IDLE config sample sizes (#14958) | Tal Einat | 2019-07-27 | 4 | -51/+128 |
| | | | | | 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-17535: Increase line number horizontal padding by 2 pixels (GH-14959) | Tal Einat | 2019-07-27 | 1 | -1/+1 |
| | | |||||
| * | bpo-29446: IDLE -- add explicit imports (GH-14919) | Terry Jan Reedy | 2019-07-23 | 1 | -0/+2 |
| | | | | Stop depending on tkinter import *. | ||||
| * | bpo-17535: IDLE editor line numbers (GH-14030) | Tal Einat | 2019-07-23 | 14 | -76/+862 |
| | | |||||
| * | bpo-33610: validate non-negative integer inputs in IDLE's config (GH-14822) | Tal Einat | 2019-07-23 | 1 | -7/+31 |
| | | |||||
| * | Fix typo found by Min ho Kim (#14879) | Terry Jan Reedy | 2019-07-21 | 1 | -1/+1 |
| | | |||||
| * | bpo-37627: Initialize IDLE Custom Run dialog with previous entries (#14870) | Ngalim Siregar | 2019-07-21 | 3 | -10/+19 |
| | | | | Repeat the command line arguments most recently entered before so the user can edit them. | ||||
| * | bpo-33610: IDLE's code-context always shows current context immediately ↵ | Tal Einat | 2019-07-18 | 2 | -7/+21 |
| | | | | | | | | (GH-14821) Eliminate delay of up to 100ms and accompanying visual artifact. Fix bug of never showing context when hide and show. | ||||
| * | bpo-36390: Gather IDLE Format menu functions into format.py (#14827) | Terry Jan Reedy | 2019-07-18 | 5 | -114/+112 |
| | | | | | | | Add two indent spec methods from editor and Rstrip to existing file. Tests are not added for indent methods because they need change in lights of 3.x's prohibition on mixing tabs and spaces. | ||||
| * | bpo-36390: IDLE: Combine region formatting methods. (GH-12481) | Cheryl Sabella | 2019-07-17 | 6 | -327/+587 |
| | | | | | | Rename paragraph.py to format.py and add region formatting methods from editor.py. Add tests for the latter. | ||||
| * | bpo-37530: simplify, optimize and clean up IDLE code context (GH-14675) | Tal Einat | 2019-07-17 | 4 | -99/+137 |
| | | | | | | | | | | | | * Only create CodeContext instances for "real" editors windows, but not e.g. shell or output windows. * Remove configuration update Tk event fired every second, by having the editor window ask its code context widget to update when necessary, i.e. upon font or highlighting updates. * When code context isn't being shown, avoid having a Tk event fired every 100ms to check whether the code context needs to be updated. * Use the editor window's getlineno() method where applicable. * Update font of the code context widget before the main text widget | ||||
| * | bpo-27452: IDLE: Cleanup config.py code (GH-14577) | Cheryl Sabella | 2019-07-16 | 2 | -39/+9 |
| | | |||||
| * | bpo-36390: simplify classifyws(), rename it and add unit tests (GH-14500) | Tal Einat | 2019-07-11 | 2 | -23/+77 |
| | | |||||
| * | bpo-26806: IDLE should run without docstrings (#14657) | Terry Jan Reedy | 2019-07-09 | 2 | -8/+19 |
| | | | | After fcf1d00, IDLE startup failed with python compiled without docstrings. | ||||
| * | bpo-26806: add 30 to the recursion limit in IDLE's shell (GH-13944) | Tal Einat | 2019-07-06 | 4 | -135/+173 |
| | | | | | | | | | This is done to compensate for the extra stack frames added by IDLE itself, which cause problems when setting the recursion limit to low values. This wraps sys.setrecursionlimit() and sys.getrecursionlimit() as invisibly as possible. | ||||
| * | Fix typo, 'widger' -> 'widget', in idlelib/tree.py (GH-14263) | İsmail Arılık | 2019-06-20 | 1 | -1/+1 |
| | | |||||
| * | bpo-37325: Fix focus traversal for 2 IDLE dialogs (#14209) | Terry Jan Reedy | 2019-06-18 | 3 | -23/+41 |
| | | | | 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 | 9 | -50/+193 |
| | | | | 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-37321: Edit IDLE subprocess connection error messages. (#14170) | Terry Jan Reedy | 2019-06-17 | 3 | -9/+14 |
| | | | | | Mainly, add a doc reference to message in pyshell. | ||||
| * | bpo-37039: Make IDLE's Zoom Height adjust to users' screens (GH-13678) | Tal Einat | 2019-06-17 | 3 | -28/+117 |
| | | | | | Measure required height by quickly maximizing once per screen. A search for a better method failed. | ||||
| * | bpo-37220: Fix 2.7 test -R crash on Windows. (GH-13957) | Terry Jan Reedy | 2019-06-16 | 1 | -2/+2 |
| | | | | The patch needed for 2.7 should make the test more stable on 3.x also. | ||||
| * | IDLE: Standardize naming convention for DummyEditwin in tests (GH-13876) | Cheryl Sabella | 2019-06-07 | 1 | -2/+2 |
| | | | | * Change from Dummy_Editwin to DummyEditwin to match other tests. | ||||
| * | bpo-37177: make IDLE's search dialogs transient (GH-13869) | Tal Einat | 2019-06-07 | 2 | -5/+8 |
| | | | | This avoids the search dialogs being hidden behind the editor window. | ||||
| * | bpo-35763: Make IDLE calltip note about '/' less obtrusive (GH-13791) | Terry Jan Reedy | 2019-06-05 | 2 | -61/+67 |
| | | | | Add it to the end of the first line if there is room. Tests were reworked. | ||||
| * | IDLE: Fix typos in docs and comments (GH-13749) | Xtreak | 2019-06-03 | 11 | -11/+11 |
| | | |||||
| * | bpo-35610: IDLE - Replace .context_use_ps1 with .prompt_last_line (GH-11307) | Cheryl Sabella | 2019-06-02 | 7 | -13/+11 |
| | | | | | Changes in bpo- 31858 made the less informative 'context_use_ps1' redundant. | ||||
| * | bpo-32411: IDLE: Remove line number sort in browser.py (#5011) | Cheryl Sabella | 2019-06-01 | 3 | -17/+20 |
| | | | | Insertion in line order makes sorting keys by line order unneeded. | ||||
| * | bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) | Serhiy Storchaka | 2019-06-01 | 2 | -2/+2 |
| | | |||||
| * | IDLE - Capitalize search dialogs' 'Close' button label. (#13691) | Terry Jan Reedy | 2019-05-31 | 2 | -2/+3 |
| | | | | | It seems to be the only widget label not capitalized. | ||||
| * | bpo-37039: IDLE - zoomheight fixes (GH-13576) | Terry Jan Reedy | 2019-05-27 | 2 | -25/+13 |
| | | | | | | Move doc entry to match menu and refactor zoom function. A followup patch will include a blurb. | ||||
| * | bpo-37038: Make idlelib.run runnable; add test clause (GH-13560) | Terry Jan Reedy | 2019-05-25 | 2 | -8/+24 |
| | | |||||
| * | bpo-36958: In IDLE, print exit message (GH-13435) | Terry Jan Reedy | 2019-05-20 | 3 | -6/+15 |
| | | | | | | Print any argument other than None or int passed to SystemExit or sys.exit(). | ||||
| * | Fix typos in documentation. Patch by tirkarthi. (GH-13354) | Terry Jan Reedy | 2019-05-16 | 1 | -6/+6 |
| | | |||||
| * | bpo-36807: When saving a file in IDLE, call flush and fsync (#13102) | Guido van Rossum | 2019-05-13 | 1 | -0/+2 |
| | | |||||
| * | bpo-36766: Typos in docs and code comments (GH-13116) | penguindustin | 2019-05-06 | 4 | -4/+4 |
| | | |||||
| * | Syntax highlight IDLE html doc code example. (GH-12981) | Terry Jan Reedy | 2019-04-27 | 1 | -25/+23 |
| | | | | The new markup is currently ignored by IDLE's tk doc display. | ||||
| * | bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553) | Serhiy Storchaka | 2019-03-27 | 1 | -2/+1 |
| | | |||||
