Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Issue #17654: Ensure IDLE menus are customized properly on OS X for | Ned Deily | 2014-03-27 |
| | | | | non-framework builds and for all variants of Tk. | ||
* | Issue #20406: Use Python application icons for Idle window title bars. | Terry Jan Reedy | 2014-02-08 |
|\ | | | | | | | Patch mostly by Serhiy Storchaka. | ||
| * | Issue #20406: Use Python application icons for Idle window title bars. | Terry Jan Reedy | 2014-02-08 |
| | | | | | | | | Patch mostly by Serhiy Storchaka. | ||
* | | Issue #20058: sys.stdin.readline() in IDLE now always returns only one line. | Serhiy Storchaka | 2013-12-25 |
|\| | |||
| * | Issue #20058: sys.stdin.readline() in IDLE now always returns only one line. | Serhiy Storchaka | 2013-12-25 |
| | | |||
* | | Issue #18270: merge from 3.3 | Ned Deily | 2013-12-10 |
|\| | |||
| * | Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial | Ned Deily | 2013-12-10 |
| | | | | | | | | shell window is present. (Original patch by Terry Reedy) | ||
* | | Issue #19481: print() of string subclass instance in IDLE no more hangs. | Serhiy Storchaka | 2013-12-10 |
|\| | |||
| * | Issue #19481: print() of string subclass instance in IDLE no more hangs. | Serhiy Storchaka | 2013-12-10 |
| | | |||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-08-13 |
|\| | |||
| * | Issue #18425: Add docstrings to IdleHistory.py. Remove redundant 'history_' | Terry Jan Reedy | 2013-08-13 |
| | | | | | | | | prefix from two attributes and two methods of History class. | ||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-06-28 |
|\| | |||
| * | Issue *18081, #18242: Change Idle warnings capture in PyShell and run to stop | Terry Jan Reedy | 2013-06-28 |
| | | | | | | | | | | | | 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. | ||
* | | Issue #18081: Back out temporary changeset, 2a9e1eb3719c, to merge new patch. | Terry Jan Reedy | 2013-06-28 |
| | | | | | | | | If buildbots run before next push, test_logging will (temporarily) fail. | ||
* | | Issue #18081: Workaround "./python -m test_idle test_logging" failure | Victor Stinner | 2013-06-25 |
| | | | | | | | | | | "import idlelib" should not install hooks on the warning modules, hooks should only be installed when IDLE is started. | ||
* | | #5492: merge with 3.3 | Roger Serwy | 2013-06-11 |
|\| | |||
| * | #5492: Avoid traceback when exiting IDLE caused by a race condition. | Roger Serwy | 2013-06-11 |
| | | |||
| * | #18151, part 1: Backport idlelilb portion of Andrew Svetlov's 3.4 patch | Terry Jan Reedy | 2013-06-08 |
| | | | | | | | | changing IOError to OSError (#16715). | ||
* | | Issue #17532: merge | Ned Deily | 2013-05-22 |
|\| | |||
| * | Issue #17532: Always include Options menu for IDLE on OS X. | Ned Deily | 2013-05-22 |
| | | | | | | | | Patch by Guilherme Simões. | ||
* | | #13495: merge with 3.3. | Roger Serwy | 2013-05-05 |
|\| | |||
| * | #13495: Avoid loading the color delegator twice in IDLE. | Roger Serwy | 2013-05-05 |
| | | |||
* | | #17585: merge with 3.3. | Roger Serwy | 2013-04-11 |
|\| | |||
| * | #17585: Fixed IDLE regression. Now closes when using exit() or quit(). | Roger Serwy | 2013-04-11 |
| | | |||
* | | #14254: merge with 3.3. | Roger Serwy | 2013-04-03 |
|\| | |||
| * | #14254: IDLE now handles readline correctly across shell restarts. | Roger Serwy | 2013-04-03 |
| | | |||
* | | #17614: merge with 3.3. | Roger Serwy | 2013-04-02 |
|\| | |||
| * | #17614: IDLE no longer raises exception when quickly closing a file. | Roger Serwy | 2013-04-02 |
| |\ | |||
| | * | #17614: IDLE no longer raises exception when quickly closing a file. | Roger Serwy | 2013-04-02 |
| | | | |||
| | * | #6698: IDLE now opens just an editor window when configured to do so. | Roger Serwy | 2013-03-31 |
| | | | |||
| | * | Issue #17390: Display Python version on Idle title bar. Patch by Edmond Burnett. | Terry Jan Reedy | 2013-03-30 |
| | | | |||
| | * | Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBase | Serhiy Storchaka | 2013-01-25 |
| | | | | | | | | | | | | interface and support all mandatory methods and properties. | ||
| | * | Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu | Andrew Svetlov | 2012-11-01 |
| | | | | | | | | | | | | Patch by Todd Rovito. | ||
| | * | Issue #9803: Don't close IDLE on saving if breakpoint is open. | Andrew Svetlov | 2012-07-31 |
| | | | | | | | | | | | | Patch by Roger Serwy. | ||
| | * | Issue #15318: Prevent writing to sys.stdin. | Martin v. Löwis | 2012-07-25 |
| | | | | | | | | | | | | Patch by Roger Serwy and myself. | ||
| | * | Issue 13532: Allow bytearrays to be written also. | Terry Jan Reedy | 2012-07-09 |
| | | | |||
| | * | Widen test to support unicode. | Martin v. Löwis | 2012-07-09 |
| | | | |||
| | * | - Issue #13532: Check that arguments to sys.stdout.write are strings. | Martin v. Löwis | 2012-07-09 |
| | | | |||
| | * | Issue #14962: Update text coloring in IDLE shell window after changing | Ned Deily | 2012-05-31 |
| | | | | | | | | | | | | options. Patch by Roger Serwy. | ||
| | * | Issue #10365: File open dialog now works instead of crashing | Terry Jan Reedy | 2012-05-26 |
| | | | | | | | | | | | | even when parent window is closed. Patch by Roger Serwy. | ||
| | * | #3573: idle now doesn't hungs if launched as: idle -e <directory> | Andrew Svetlov | 2012-03-21 |
| | | | | | | | | | | | | Patch by Guilherme Polo. | ||
| | * | whitespace3 | Terry Jan Reedy | 2012-01-31 |
| | | | |||
| | * | #13506 Add '' to path for interactive interpreter by adding with_cwd parameter | Terry Jan Reedy | 2012-01-31 |
| | | | | | | | | | | | | | | | 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 breakpoint | Ned Deily | 2011-12-14 |
| | | | | | | | | | | | | | | | 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 Deily | 2011-10-30 |
| | | | | | | | | | | | | (Patch by Roger Serwy) | ||
| | * | Fix closes issue12438 - idlelib.PyShell's showformatwarning method was ↵ | Senthil Kumaran | 2011-07-03 |
| | | | | | | | | | | | | passing an incorrect arg. | ||
| | * | Merged revisions 88003 via svnmerge from | Ned Deily | 2011-01-30 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88003 | ned.deily | 2011-01-14 20:37:12 -0800 (Fri, 14 Jan 2011) | 5 lines #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5, rather than the currently problematic Apple-supplied one, when running with the 64-/32-bit installer variant. ........ | ||
| | * | Merged revisions 83103 via svnmerge from | Ezio Melotti | 2010-07-23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83103 | ezio.melotti | 2010-07-23 19:48:22 +0300 (Fri, 23 Jul 2010) | 1 line #9359: fix typo. Thanks to Piotr Kasprzyk for the patch. ........ | ||
| | * | #7092: Fix additional "-3" warnings in the idlelib package, and convert to ↵ | Florent Xicluna | 2010-04-02 |
| | | | | | | | | | | | | absolute imports. | ||
| | * | Syntax cleanup `== None` -> `is None` | Florent Xicluna | 2010-03-25 |
| | | |