- 11 Kas, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
The System Preferences Dock "prefer tabs always" setting disables some IDLE features. Menus are a bit different than as described for Windows and Linux.
-
- 10 Kas, 2018 1 kayıt (commit)
-
-
- 07 Kas, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
A program that runs indefinitely can overfill memory.
-
- 06 Kas, 2018 2 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Add a new subsection to the doc.
-
Terry Jan Reedy yazdı
(This should have been done with the first PR for this issue.)
-
- 05 Kas, 2018 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
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.
-
- 29 Eki, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Topics include opening, title and status bar, .py* extension, and running.
-
- 28 Eki, 2018 4 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Add a paragraph in "Help and preferences", "Help sources" subsection.
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
We now use git and backporting instead of hg and forward merging.
-
Terry Jan Reedy yazdı
There is only one trivial change to idle.rst. Nearly all the changes to help.html are the elimination of chapter and section numbers on headers due to changes in the build system. help.py no longer requires header numbering.
-
- 14 Eki, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
A Windows build with _tkinter, tkinter, and idlelib but without ctypes is unlikely but apparently possible.
-
- 06 Eki, 2018 1 kayıt (commit)
-
-
Stéphane Wirtel yazdı
Fix typos
-
- 30 Eyl, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Patch by Serhiy Storchaka (in PR #9642).
-
- 25 Eyl, 2018 3 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Tal Einat yazdı
-
Terry Jan Reedy yazdı
-
- 24 Eyl, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
- 23 Eyl, 2018 1 kayıt (commit)
-
-
- 10 Agu, 2018 1 kayıt (commit)
-
-
Tal Einat yazdı
-
- 05 Agu, 2018 1 kayıt (commit)
-
-
Tal Einat yazdı
* make CallTip and ToolTip sub-classes of a common abstract base class * remove ListboxToolTip (unused and ugly) * greatly increase test coverage * tested on Windows, Linux and macOS
-
- 03 Agu, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Some MacOS-tk combinations need .update_idletasks(). The call is both unneeded and innocuous on Linux and Windows. Patch by Kevin Waltzer.
-
- 02 Agu, 2018 2 kayıt (commit)
- 20 Tem, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
- 27 Haz, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Import pyshell first in htest to call SetProcessDpiAwareness on Windows before tkinter.Tk() is called for the htest. Apparently, 'root.destroy()' undoes a previous 'root = Tk()'. Since IDLE unittests always destroy roots, a unittest before an htest does not require anything more to work right. Since part of the purpose of human-viewed tests is to determine that widgets look right, it is important that they look the same for testing as when running IDLE.
-
- 26 Haz, 2018 1 kayıt (commit)
-
-
Mark Roseman yazdı
These should have been included in PR 7836.
-
- 24 Haz, 2018 1 kayıt (commit)
-
-
Tal Einat yazdı
This avoids a failure in at least one case when running only a single test method rather than all tests in the module. The issue came up when testing the following on Windows 10 Pro 64-bit: HighPageTest.test_highlight_target_text_mouse
-
- 23 Haz, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
In configdialog, the custom tabbedpages widget was replaced by ttk.notebook several months ago.
-
- 22 Haz, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Increases coverage by 44%.
-
- 21 Haz, 2018 2 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Every other menudef key is the lowercase version of the corresponding main menu entry (in this case, 'Window').
-
Terry Jan Reedy yazdı
Match Window on the main menu and remove last plural module name. Change imports, test, and attribute references to match new name.
-
- 20 Haz, 2018 4 kayıt (commit)
-
-
Terry Jan Reedy yazdı
The revised file compiles, runs, and tests OK. idle_test/README.txt explains how to use it to create new IDLE test files.
-
-
Terry Jan Reedy yazdı
Fix-up class name duplication in PR #7807. Combined effect is that module calltips and its class CallTips are now calltip and Calltip. In module calltip_w class CallTip is now CalltipWindow.
-
Terry Jan Reedy yazdı
Improve consistency and appearance. Module idlelib.calltips is now calltip. Class idlelib.calltip_w.CallTip is now Calltip.
-
- 19 Haz, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
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).
-
- 18 Haz, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Part 2 of 3. Continues PR #7689, changeset ee5ef309. Edit and add tests for 18 modules, help_about to replace and run.
-
- 16 Haz, 2018 1 kayıt (commit)
-
-
Stéphane Wirtel yazdı
Make it the same as when one runs 'python'.
-
- 15 Haz, 2018 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Create a template for minimally testing a tkinter-using module by importing it and instantiating its class(es). Add a test file for all non-startup IDLE modules. Edit existing files and update coverage. This is part 1 of 3, covering the 21 autocomplete to help modules and touching 33 idlelib files.
-