Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix typos in the Lib directory (GH-28775) | Christian Clauss | 2021-10-06 | 1 | -1/+1 |
| | | | | | Fix typos in the Lib directory as identified by codespell. Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> | ||||
* | bpo-43013: Fix old tkinter module names in idlelib (GH-24326) | Terry Jan Reedy | 2021-01-25 | 1 | -5/+4 |
| | | | | | | Lowercase 'tkColorChooser', 'tkFileDialog', 'tkSimpleDialog', and 'tkMessageBox' and remove 'tk'. Just lowercase 'tkFont' as 'font' is already used. Adjust import. | ||||
* | bpo-40511: Stop unwanted flashing of IDLE calltips (GH-20910) | Tal Einat | 2020-11-02 | 1 | -4/+9 |
| | | | | | | They were occurring with both repeated 'force-calltip' invocations and by typing parentheses in expressions, strings, and comments in the argument code. Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> | ||||
* | IDLE: Fix typos in docs and comments (GH-13749) | Xtreak | 2019-06-03 | 1 | -1/+1 |
| | |||||
* | bpo-35133: Fix mistakes when concatenate string literals on different lines. ↵ | Serhiy Storchaka | 2018-11-05 | 1 | -1/+1 |
| | | | | | | | | | | (GH-10284) Two kind of mistakes: 1. Missed space. After concatenating there is no space between words. 2. Missed comma. Causes unintentional concatenating in a list of strings. | ||||
* | Issue #20640: Add tests for idlelib.configHelpSourceEdit. | Terry Jan Reedy | 2016-05-15 | 1 | -0/+5 |
| | | | | Patch by Saimadhav Heblikar. | ||||
* | Issue #23943: Fix typos. Patch by Piotr Kasprzyk. | Berker Peksag | 2015-04-14 | 1 | -1/+1 |
| | |||||
* | Issue #22186: Fix typos in Lib/. | Berker Peksag | 2014-10-19 | 1 | -1/+1 |
| | | | | Patch by Févry Thibault. | ||||
* | Issue #18409: Idle: add unittest for AutoComplete. Patch by Phil Webster. | Terry Jan Reedy | 2014-06-04 | 1 | -4/+23 |
| | |||||
* | #18741: fix more typos. Patch by Févry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -4/+4 |
| | |||||
* | Issue #18365: normalize whitespace | Terry Jan Reedy | 2013-07-13 | 1 | -6/+6 |
| | |||||
* | Issue #18365: Add mock Text class and test thereof versus tk.Text. | Terry Jan Reedy | 2013-07-13 | 1 | -5/+221 |
| | | | | Based on patches by Todd.Rovito and Phil Webster. | ||||
* | Issue18130: Test class idlelib.configSectionNameDialog.GetCfgSectionNameDialog. | Terry Jan Reedy | 2013-06-05 | 1 | -0/+63 |
Fix bug in existing human test and add instructions; fix two bugs in tested code; remove redundancies, add spaces, and change two internal method names. Add mock_tk with mocks for tkinter.Variable subclasses and tkinter.messagebox. Use mocks in test_config_name to unittest methods that are otherwise gui-free. |