summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PyShell.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #28998: More APIs now support longs as well as ints.Serhiy Storchaka2016-12-271-2/+2
|
* Issue #5124: Paste with selection should always replace.Terry Jan Reedy2016-06-111-1/+14
| | | | | This is how paste work on Windows, Mac, modern Linux apps, and ttk widgets. The exception was X11 tk widgets. Original patch by Serhiy Storchake.
* Make it slightly clearer that IDLE close message is referring to user program,Terry Jan Reedy2015-11-201-1/+1
| | | | not to IDLE itself.
* Issue #25313: Change the handling of new built-in text color themes to betterTerry Jan Reedy2015-11-121-3/+3
| | | | | address the compatibility problem introduced by the addition of IDLE Dark. Consistently use the revised idleConf.CurrentTheme everywhere in idlelib.
* Issue #25173: Replace 'master' with 'parent' in tkinter.messagebox calls.Terry Jan Reedy2015-09-261-6/+6
| | | | | This associates the message box with the widget and is better for Mac OSX. Patch by Mark Roseman.
* whitespaceTerry Jan Reedy2015-09-231-1/+1
|
* Issue #24570: Right-click for context menus now work on Mac Aqual also.Terry Jan Reedy2015-09-231-0/+8
| | | | Patch by Mark Roseman.
* Issue #24889: When starting Idle, force focus onto Idle window if not alreadyTerry Jan Reedy2015-09-071-0/+1
| | | | there (as when opening Idle from interactive Python on Windows).
* Issue #21192: Change 'RUN' back to 'RESTART' when running editor file.Terry Jan Reedy2015-09-031-1/+1
|
* Issue #24759: Revert 8203fc75b3d2.Terry Jan Reedy2015-08-031-10/+0
|
* Issue #21192: Idle Editor. When a file is run, put its name in the restart bar.Terry Jan Reedy2015-08-011-7/+6
| | | | Do not print false prompts. Original patch by Adnan Umer.
* Issue 24759: Gracefull exit Idle if ttk import fails.Terry Jan Reedy2015-07-311-0/+10
|
* Issue #24222: Fix regression introduced with idlelib/PyShell.py future printTerry Jan Reedy2015-05-181-1/+1
| | | | import. Idle -c "code", -r file.py again compile with print statement.
* Issue #15809: IDLE shell now uses locale encoding instead of Latin1 forSerhiy Storchaka2015-05-171-3/+5
| | | | decoding unicode literals.
* Issue #23184: idlelib, remove more unused names and imports.Terry Jan Reedy2015-05-161-11/+8
|
* Issue #23583: Fixed writing unicode to standard output stream in IDLE.Serhiy Storchaka2015-03-241-1/+1
| | | | Added tests for standard IO streams in IDLE.
* Issue #23180: Rename IDLE "Windows" menu item to "Window".Ned Deily2015-01-181-4/+1
| | | | Patch by Al Sweigart.
* Issue #22614: Don't try to update deleted text. Patch by Serhiy Storchaka.Terry Jan Reedy2014-10-131-0/+3
|
* Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar.Terry Jan Reedy2014-10-121-7/+2
|
* Issue #22420: Avoid 'write to None' crashes by using print instead.Terry Jan Reedy2014-09-201-14/+14
| | | | | For 2,.7, add print_function __future__ import and convert print statements to print functions. Based on 3.x patch by Serhiy Storchaka.
* Issue #14105: Stop removing breakpoints from Idle editors.Terry Jan Reedy2014-08-091-0/+10
| | | | Move BREAK tag configuration to PyShellEditorWindow.
* Issue #17654: Ensure IDLE menus are customized properly on OS X forNed Deily2014-03-281-2/+2
| | | | non-framework builds and for all variants of Tk.
* Issue #20406: Use Python application icons for Idle window title bars.Terry Jan Reedy2014-02-081-1/+13
| | | | Patch mostly by Serhiy Storchaka.
* Issue #20058: sys.stdin.readline() in IDLE now always returns only one line.Serhiy Storchaka2013-12-251-0/+3
|
* Issue #18270: Prevent possible IDLE AttributeError on OS X when no initialNed Deily2013-12-111-11/+14
| | | | shell window is present. (Original patch by Terry Reedy)
* Issue #19481: print() of unicode, str or bytearray subclass instance in IDLESerhiy Storchaka2013-12-101-2/+10
| | | | no more hangs.
* Issue #18425: Add docstrings to IdleHistory.py. Remove redundant 'history_'Terry Jan Reedy2013-08-131-1/+1
| | | | prefix from two attributes and two methods of History class.
* Issue #18316: Update idlelib 2.7 except clauses to ease backports.Terry Jan Reedy2013-06-291-4/+4
|
* Issue *18081, #18242: Change Idle warnings capture in PyShell and run to stopTerry Jan Reedy2013-06-291-29/+53
| | | | | | replacing warnings.formatwarnings and to reverse replacement of warnings.showwarnings when import is complete and when main function exits. Add test_warning.py. Vinay Sajip provided capture_warnings function.
* #5492: Avoid traceback when exiting IDLE caused by a race condition.Roger Serwy2013-06-121-6/+5
|
* Issue #17532: Always include Options menu for IDLE on OS X.Ned Deily2013-05-221-1/+0
| | | | Patch by Guilherme Simões.
* #17585: Fixed IDLE regression. Now closes when using exit() or quit().Roger Serwy2013-04-121-0/+3
|
* #14254: IDLE now handles readline correctly across shell restarts.Roger Serwy2013-04-031-2/+12
|
* #17614: IDLE no longer raises exception when quickly closing a file.Roger Serwy2013-04-031-1/+5
|
* #6698: IDLE now opens just an editor window when configured to do so.Roger Serwy2013-04-011-2/+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-25/+69
| | | | interface and support all mandatory methods and properties.
* Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context MenuAndrew Svetlov2012-11-011-2/+20
| | | | Patch by Todd Rovito.
* Issue #9803: Don't close IDLE on saving if breakpoint is open.Andrew Svetlov2012-07-311-2/+2
| | | | Patch by Roger Serwy.
* Issue #15318: Prevent writing to sys.stdin.Martin v. Löwis2012-07-251-1/+15
| | | | Patch by Roger Serwy and myself.
* Issue 13532: Allow bytearrays to be written also.Terry Jan Reedy2012-07-091-2/+2
|
* Widen test to support unicode.Martin v. Löwis2012-07-091-1/+1
|
* - Issue #13532: Check that arguments to sys.stdout.write are strings.Martin v. Löwis2012-07-091-0/+2
|
* Issue #14962: Update text coloring in IDLE shell window after changingNed Deily2012-05-311-0/+5
| | | | options. 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.
* whitespace3Terry Jan Reedy2012-01-311-1/+1
|
* #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-10/+18
| | | | | files, display a message popup and continue rather than crash. (original patch by Roger Serwy)
* Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart.Ned Deily2011-10-311-0/+2
| | | | (Patch by Roger Serwy)