| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
idle.rst is unchanged
(cherry picked from commit a460d45063844a21c20fa8b0d23878165f99f3b5)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
|
| | |
|
| |
|
|
|
| |
(cherry picked from commit 471247150e9707e583297ac6b4edff978efd8941)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
|
| |
|
|
|
|
|
|
|
|
| |
Keywords are present in the main module tab completion lists generated by rlcompleter, which is used by REPLs on *nix. Add all keywords to IDLE's main module name list except those already added from builtins (True, False, and None) . This list may also be used by Show Completions on the Edit menu, and its hot key.
Rewrite Completions doc.
Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
(cherry picked from commit bce2eb4646021910aa4074d86f44a09b32d0b2b2)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
|
| |
|
|
|
|
| |
It appears standard that moving the text insert cursor away from a selection clears the
selection. Clearing prevents accidental deletion of a possibly off-screen bit of text.
The update is for Ln and Col on the status bar.
|
| | |
|
| |
|
| |
Extra newlines are removed at the end of non-shell files. If the file only has newlines after stripping other trailing whitespace, all are removed, as is done by patchcheck.py.
|
| |
|
|
|
| |
The HTML5 output from Sphinx 2.x adds '<p>' tags within list elements. Using a new prevtag attribute, ignore these instead of emitting unwanted '\n\n'.
Also stop looking for 'first' classes on tags (no longer present) and fix the bug of double-spacing instead of single spacing after <pre> blocks.
|
| |
|
| |
Put the most common choice, Run Module, at the top.
|
| | |
|
| |
|
|
|
|
|
|
| |
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.
|
| |
|
| |
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.
|
| |
|
|
| |
Measure required height by quickly maximizing once per screen.
A search for a better method failed.
|
| |
|
|
|
| |
Move doc entry to match menu and refactor zoom function.
A followup patch will include a blurb.
|
| |
|
|
|
| |
Print any argument other than None or int passed to SystemExit
or sys.exit().
|
| | |
|
| | |
|
| |
|
| |
The new markup is currently ignored by IDLE's tk doc display.
|
| | |
|
| |
|
| |
Add a code example block.
|
| | |
|
| |
|
| |
Format menu and preferences.
|
| |
|
| |
Also add some internal cross-references.
|
| | |
|
| |
|
|
|
| |
The System Preferences Dock "prefer tabs always" setting disables some
IDLE features. Menus are a bit different than as described for Windows
and Linux.
|
| |
|
| |
A program that runs indefinitely can overfill memory.
|
| |
|
| |
Add a new subsection to the doc.
|
| |
|
| |
(This should have been done with the first PR for this issue.)
|
| |
|
| |
Topics include opening, title and status bar, .py* extension, and running.
|
| |
|
| |
Add a paragraph in "Help and preferences", "Help sources" subsection.
|
| | |
|
| |
|
| |
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.
|
| |
|
| |
Users can now click on context lines.
|
| |
|
|
|
|
|
| |
'Strip trailing whitespace' is not limited to spaces. Wording caters to beginners who
do know know the meaning of 'whitespace'. Multiline string literals are not skipped.
* News blurb.
|
| |
|
|
| |
IDLE calls tcl/tk update in the background in order to make live
interaction and experimentatin with tkinter applications much easier.
|
| |
|
|
| |
As needed for the conversion of extensions to features.
|
| |
|
| |
When IDLE fail to start because the socket connection fails, direct people to a new subsection of the IDLE doc listing various causes and remedies.
|
| | |
|
| |
|
|
| |
Patch by Roger Serwy, updated by Bayard Randel.
|
| | |
|
| | |
|
| |
|
|
|
| |
Reformat header above separator line (added if missing) to a common format.
Patch by Yoni Lavi.
|
| |
|
|
| |
The reload(sys) effect was the crux of a Stackoverflow question.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Doc/build/html/library/idle.html, which is built from Doc/library/idle.rst.
Help.html is an rstrip()ed copy of idle.html that can be pushed.
The displayed content is unchanged because a) the version number is not
displayed, being inherent in the version displaying the file and b) the tt
tag was ignored by the custom parser in idlelib/help.py. The wrapped
<span class="pre"> tags remain as they were.
This will be merged in 3.6 (without conflict) because the 3.6 help.html is
a copy of the 3.5 file (which was a copy of the 3.4 file). The two files will
remain the same until either a) there is a content change that only applies
to one of them or b) 3.5 maintenance ends and the 3.6 file is itself rebased.
|
| |
|
|
| |
tab in the IDLE Preferences dialog. Code patch by Mark Roseman.
|
| |
|
|
|
| |
curious users. The previous user content is now in the IDLE doc and is
redundant. IDLE now means 'Integrated Development and Learning Environment'.
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
to finish making current README.txt obsolete.
|