summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PyShell.py
Commit message (Collapse)AuthorAgeFilesLines
...
| | * Clean up ModifiedInterpreter.runcode() structureKurt B. Kaiser2007-02-061-27/+29
| | |
| | * Bug #813342: Start the IDLE subprocess with -Qnew if the parentGeorg Brandl2006-10-121-0/+2
| | | | | | | | | | | | is started with that option.
| | * Add comment explaining that error msgs may be due to user code whenKurt B. Kaiser2006-10-011-0/+2
| | | | | | | | | | | | running w/o subprocess.
| | * File menu hotkeys: there were three 'p' assignments. Reassign theKurt B. Kaiser2006-08-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the Shell menu hotkey from 's' to 'l'. M Bindings.py M PyShell.py M NEWS.txt
| | * Get quit() and exit() to work cleanly when not using subprocess.Kurt B. Kaiser2006-08-161-7/+10
| | |
| | * Patch #1540892: site.py Quitter() class attempts to close sys.stdinKurt B. Kaiser2006-08-161-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | before raising SystemExit, allowing IDLE to honor quit() and exit(). M Lib/site.py M Lib/idlelib/PyShell.py M Lib/idlelib/CREDITS.txt M Lib/idlelib/NEWS.txt M Misc/NEWS
| | * Retrieval of previous shell command was not always preserving indentationKurt B. Kaiser2006-08-101-9/+15
| | | | | | | | | | | | since 1.2a1) Patch 1528468 Tal Einat.
| | * As a slight enhancement to the previous checkin, improve theKurt B. Kaiser2006-08-091-2/+5
| | | | | | | | | | | | internal error reporting by moving message to IDLE console.
| | * 1. When used w/o subprocess, all exceptions were preceeded by an errorKurt B. Kaiser2006-08-091-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | message claiming they were IDLE internal errors (since 1.2a1). 2. Add Ronald Oussoren to CREDITS M NEWS.txt M PyShell.py M CREDITS.txt
| | * EditorWindow failed when used stand-alone if sys.ps1 not set.Kurt B. Kaiser2006-07-241-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | Bug 1010370 Dave Florek M EditorWindow.py M PyShell.py M NEWS.txt
| | * Whitespace normalization.Tim Peters2006-06-111-2/+2
| | |
| | * This patch improves the L&F of IDLE on OSX. The changes are conditionalized onRonald Oussoren2006-06-111-1/+20
| | | | | | | | | | | | | | | being in an IDLE.app bundle on darwin. This does a slight reorganisation of the menus and adds support for file-open events.
* | | #6698: merge with 3.3.Roger Serwy2013-04-011-2/+2
|\ \ \ | |/ /
| * | #6698: IDLE now opens just an editor window when configured to do so.Roger Serwy2013-04-011-2/+2
| | |
* | | Merge from 3.3: Issue #17390Terry Jan Reedy2013-03-301-1/+2
|\ \ \ | |/ /
| * | Issue #17390: Display Python version on Idle title bar. Patch by Edmond Burnett.Terry Jan Reedy2013-03-301-1/+2
| | |
* | | Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBaseSerhiy Storchaka2013-01-251-24/+68
|\ \ \ | |/ / | | | | | | interface and support all mandatory methods and properties.
| * | Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBaseSerhiy Storchaka2013-01-251-24/+68
| |\ \ | | | | | | | | | | | | interface and support all mandatory methods and properties.
| | * | Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBaseSerhiy Storchaka2013-01-251-24/+68
| | | | | | | | | | | | | | | | interface and support all mandatory methods and properties.
* | | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-4/+4
| | | |
* | | | Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-181-1/+1
| | | |
* | | | Merge issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context MenuAndrew Svetlov2012-11-011-2/+21
|\ \ \ \ | |/ / / | | | | | | | | Patch by Todd Rovito.
| * | | Merge issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context MenuAndrew Svetlov2012-11-011-2/+21
| |\ \ \ | | |/ / | | | | | | | | Patch by Todd Rovito.
| | * | Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context MenuAndrew Svetlov2012-11-011-2/+21
| | | | | | | | | | | | | | | | Patch by Todd Rovito.
* | | | normalize whitespacesAndrew Svetlov2012-10-051-1/+1
| | | |
* | | | Issue #16123: IDLE - deprecate running without a subprocess.Andrew Svetlov2012-10-051-2/+8
|/ / / | | | | | | | | | Patch by Roger Serwy
* | | Issue #9803: Don't close IDLE on saving if breakpoint is open.Andrew Svetlov2012-07-311-2/+2
|\ \ \ | |/ / | | | | | | Patch by Roger Serwy.
| * | Issue #9803: Don't close IDLE on saving if breakpoint is open.Andrew Svetlov2012-07-311-2/+2
| | | | | | | | | | | | Patch by Roger Serwy.
* | | merge 3.2Martin v. Löwis2012-07-251-3/+4
|\ \ \ | |/ /
| * | Issue #7163: Propagate return value of sys.stdout.write.Martin v. Löwis2012-07-251-3/+4
| | | | | | | | | | | | Patch by Roger Serwy.
* | | merge 3.2Martin v. Löwis2012-07-251-1/+15
|\ \ \ | |/ /
| * | Issue #15318: Prevent writing to sys.stdin.Martin v. Löwis2012-07-251-1/+15
| | | | | | | | | | | | Patch by Roger Serwy and myself.
* | | merge 3.2Martin v. Löwis2012-07-091-0/+2
|\ \ \ | |/ /
| * | Issue #13532: Check that arguments to sys.stdout.write are strings.Martin v. Löwis2012-07-091-0/+2
| | |
* | | Issue #14962: mergeNed Deily2012-05-311-0/+5
|\ \ \ | |/ /
| * | Issue #14962: Update text coloring in IDLE shell window after changingNed Deily2012-05-311-0/+5
| | | | | | | | | | | | options. Patch by Roger Serwy.
* | | Merge with 3.2Terry Jan Reedy2012-05-271-1/+2
|\ \ \ | |/ / | | | | | | | | | Issue #10365: File open dialog now works instead of crashing even when parent window is closed. Patch by Roger Serwy.
| * | Issue #10365: File open dialog now works instead of crashingTerry Jan Reedy2012-05-271-1/+2
| | | | | | | | | | | | even when parent window is closed. Patch by Roger Serwy.
| * | #3573: idle now doesn't hungs if launched as: idle -e <directory>Andrew Svetlov2012-03-211-2/+4
| | | | | | | | | | | | Patch by Guilherme Polo.
* | | Issue #14200 — now displayhook for IDLE works in non-subprocess mode as ↵Andrew Svetlov2012-03-251-0/+2
| | | | | | | | | | | | well as subprecess.
* | | #3573: idle now doesn't hungs if launched as: idle -e <directory>Andrew Svetlov2012-03-201-2/+4
| | | | | | | | | | | | Patch by Guilherme Polo.
* | | Issue #14200: Idle shell crash on printing non-BMP unicode character.Andrew Svetlov2012-03-141-0/+10
| | | | | | | | | | | | | | | | | | UnicodeEncodeError is raised for strings contains non-BMP characters. For eval results unicode escaping is used, print() calls display exception with traceback as usual.
* | | Merge with 3.2 whitespaceTerry Jan Reedy2012-01-311-1/+1
|\ \ \ | |/ /
| * | whitespaceTerry Jan Reedy2012-01-311-1/+1
| | |
* | | Merge 3.2Terry Jan Reedy2012-01-311-6/+13
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | - Issue #13506: Add '' to path for IDLE Shell when started and restarted with Restart Shell. Original patches by Marco Scataglini and Roger Serwy. Merge 3.2 #13506 Add '' to path for interactive interpreter by adding with_cwd parameter to PyShell.PyShell.transfer_path() and changing elsewhere as needed. Original patches by Marco Scataglini and Roger Serwy.
| * | #13506 Add '' to path for interactive interpreter by adding with_cwd parameterTerry Jan Reedy2012-01-311-6/+13
| | | | | | | | | | | | | | | to PyShell.PyShell.transfer_path() and changing elsewhere as needed. Original patches by Marco Scataglini and Roger Serwy.
* | | Issue #4625: If IDLE cannot write to its recent file or breakpointNed Deily2011-12-141-8/+16
|\ \ \ | |/ / | | | | | | | | | files, display a message popup and continue rather than crash. (original patch by Roger Serwy)
| * | Issue #4625: If IDLE cannot write to its recent file or breakpointNed Deily2011-12-141-8/+16
| | | | | | | | | | | | | | | files, display a message popup and continue rather than crash. (original patch by Roger Serwy)
* | | Issue #13300: Fix IDLE Restart Shell command failure introduced byNed Deily2011-11-061-0/+4
|/ / | | | | | | 3a5a0943b201. Do not close listening socket on subprocess restart.
* | Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart.Ned Deily2011-10-311-0/+2
| | | | | | | | (Patch by Roger Serwy)