summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PyShell.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * | #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)
* | Issue #9871: Prevent IDLE 3 crash when given byte stingsNed Deily2011-09-141-3/+3
| | | | | | | | | | with invalid hex escape sequences, like b'\x0'. (Original patch by Claudiu Popa.)
* | Issue #12636: IDLE reads the coding cookie when executing a Python script.Victor Stinner2011-09-011-5/+6
| |
* | IDLE: fix some RessourceWarning, reuse tokenize.open()Victor Stinner2011-09-011-12/+14
| |
* | Issue #12540: Prevent zombie IDLE processes on Windows due to changesNed Deily2011-08-031-26/+15
| | | | | | | | in os.kill(). Original patch by Eli Bendersky.
* | Fix closes issue12438 - idlelib.PyShell's showformatwarning method was ↵Senthil Kumaran2011-07-041-1/+1
| | | | | | | | passing an incorrect arg.
* | #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5,Ned Deily2011-01-151-0/+7
| | | | | | | | | | rather than the currently problematic Apple-supplied one, when running with the 64-/32-bit installer variant.
* | #9359: fix typo. Thanks to Piotr Kasprzyk for the patch.Ezio Melotti2010-07-231-1/+1
| |
* | Merged revisions 79297,79310,79382,79425-79427,79450 via svnmerge fromFlorent Xicluna2010-03-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79297 | florent.xicluna | 2010-03-22 18:18:18 +0100 (lun, 22 mar 2010) | 2 lines #7668: Fix test_httpservers failure when sys.executable contains non-ASCII bytes. ........ r79310 | florent.xicluna | 2010-03-22 23:52:11 +0100 (lun, 22 mar 2010) | 2 lines Issue #8205: Remove the "Modules" directory from sys.path when Python is running from the build directory (POSIX only). ........ r79382 | florent.xicluna | 2010-03-24 20:33:25 +0100 (mer, 24 mar 2010) | 2 lines Skip tests which depend on multiprocessing.sharedctypes, if _ctypes is not available. ........ r79425 | florent.xicluna | 2010-03-25 21:32:07 +0100 (jeu, 25 mar 2010) | 2 lines Syntax cleanup `== None` -> `is None` ........ r79426 | florent.xicluna | 2010-03-25 21:33:49 +0100 (jeu, 25 mar 2010) | 2 lines #8207: Fix test_pep277 on OS X ........ r79427 | florent.xicluna | 2010-03-25 21:39:10 +0100 (jeu, 25 mar 2010) | 2 lines Fix test_unittest and test_warnings when running "python -Werror -m test.regrtest" ........ r79450 | florent.xicluna | 2010-03-26 20:32:44 +0100 (ven, 26 mar 2010) | 2 lines Ensure that the failed or unexpected tests are sorted before printing. ........
* | convert shebang lines: python -> python3Benjamin Peterson2010-03-111-1/+1
| |
* | Merged revisions 74446-74449 via svnmerge fromGuilherme Polo2009-08-141-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev/python/trunk ........ r74446 | guilherme.polo | 2009-08-14 10:53:41 -0300 (Fri, 14 Aug 2009) | 1 line Issue #3344: Replace itertools.count by enumerate. ........ r74447 | guilherme.polo | 2009-08-14 11:03:07 -0300 (Fri, 14 Aug 2009) | 1 line Issue #3926: Fix the usage of the new showwarnings and formatwarning. ........ r74448 | guilherme.polo | 2009-08-14 11:36:45 -0300 (Fri, 14 Aug 2009) | 3 lines Issue #1135: Add the XView and YView mix-ins to avoid duplicating the xview* and yview* methods. ........ r74449 | guilherme.polo | 2009-08-14 11:43:43 -0300 (Fri, 14 Aug 2009) | 1 line Clarifying Entry.selection_present's docstring. ........
* | Merged revisions 71126 via svnmerge fromKurt B. Kaiser2009-04-041-17/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r71126 | kurt.kaiser | 2009-04-04 03:03:48 -0400 (Sat, 04 Apr 2009) | 5 lines Allow multiple IDLE GUI/subprocess pairs to exist simultaneously. Thanks to David Scherer for suggesting the use of an ephemeral port for the GUI. Patch 1529142 Weeble. ........
* | Forward port r68985: Idle startup message.Raymond Hettinger2009-01-271-12/+2
| |
* | Merged revisions ↵Benjamin Peterson2008-10-191-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 66887,66891,66902-66903,66905-66906,66911-66913,66922,66927-66928,66936,66939-66940,66962,66964,66973 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ................ r66887 | benjamin.peterson | 2008-10-13 16:51:40 -0500 (Mon, 13 Oct 2008) | 1 line document how to disable fixers ................ r66891 | amaury.forgeotdarc | 2008-10-14 16:47:22 -0500 (Tue, 14 Oct 2008) | 5 lines #4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module: compilation fails with "undefined reference to _Py_ascii_whitespace" Will backport to 2.6. ................ r66902 | skip.montanaro | 2008-10-15 06:49:10 -0500 (Wed, 15 Oct 2008) | 1 line easter egg ................ r66903 | benjamin.peterson | 2008-10-15 15:34:09 -0500 (Wed, 15 Oct 2008) | 1 line don't recurse into directories that start with '.' ................ r66905 | benjamin.peterson | 2008-10-15 16:05:55 -0500 (Wed, 15 Oct 2008) | 1 line support the optional line argument for idle ................ r66906 | benjamin.peterson | 2008-10-15 16:58:46 -0500 (Wed, 15 Oct 2008) | 1 line add a much requested newline ................ r66911 | benjamin.peterson | 2008-10-15 18:10:28 -0500 (Wed, 15 Oct 2008) | 41 lines Merged revisions 66805,66841,66860,66884-66886,66893,66907,66910 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66805 | benjamin.peterson | 2008-10-04 20:11:02 -0500 (Sat, 04 Oct 2008) | 1 line mention what the fixes directory is for ........ r66841 | benjamin.peterson | 2008-10-07 17:48:12 -0500 (Tue, 07 Oct 2008) | 1 line use assertFalse and assertTrue ........ r66860 | benjamin.peterson | 2008-10-08 16:05:07 -0500 (Wed, 08 Oct 2008) | 1 line instead of abusing the pattern matcher, use start_tree to find a next binding ........ r66884 | benjamin.peterson | 2008-10-13 15:50:30 -0500 (Mon, 13 Oct 2008) | 1 line don't print tokens to stdout when -v is given ........ r66885 | benjamin.peterson | 2008-10-13 16:28:57 -0500 (Mon, 13 Oct 2008) | 1 line add the -x option to disable fixers ........ r66886 | benjamin.peterson | 2008-10-13 16:33:53 -0500 (Mon, 13 Oct 2008) | 1 line cut down on some crud ........ r66893 | benjamin.peterson | 2008-10-14 17:16:54 -0500 (Tue, 14 Oct 2008) | 1 line add an optional set literal fixer ........ r66907 | benjamin.peterson | 2008-10-15 16:59:41 -0500 (Wed, 15 Oct 2008) | 1 line don't write backup files by default ........ r66910 | benjamin.peterson | 2008-10-15 17:43:10 -0500 (Wed, 15 Oct 2008) | 1 line add the -n option; it stops backupfiles from being written ........ ................ r66912 | hirokazu.yamamoto | 2008-10-16 01:25:25 -0500 (Thu, 16 Oct 2008) | 2 lines removed unused _PyUnicode_FromFileSystemEncodedObject. made win32_chdir, win32_wchdir static. ................ r66913 | benjamin.peterson | 2008-10-16 13:52:14 -0500 (Thu, 16 Oct 2008) | 1 line document that deque indexing is O(n) #4123 ................ r66922 | benjamin.peterson | 2008-10-16 14:40:14 -0500 (Thu, 16 Oct 2008) | 1 line use new showwarnings signature for idle #3391 ................ r66927 | andrew.kuchling | 2008-10-16 15:15:47 -0500 (Thu, 16 Oct 2008) | 1 line Fix wording (2.6.1 backport candidate) ................ r66928 | georg.brandl | 2008-10-16 15:20:56 -0500 (Thu, 16 Oct 2008) | 2 lines Add more TOC to the whatsnew index page. ................ r66936 | georg.brandl | 2008-10-16 16:20:15 -0500 (Thu, 16 Oct 2008) | 2 lines #4131: FF3 doesn't write cookies.txt files. ................ r66939 | georg.brandl | 2008-10-16 16:36:39 -0500 (Thu, 16 Oct 2008) | 2 lines part of #4012: kill off old name "processing". ................ r66940 | georg.brandl | 2008-10-16 16:38:48 -0500 (Thu, 16 Oct 2008) | 2 lines #4083: add "as" to except handler grammar as per PEP 3110. ................ r66962 | benjamin.peterson | 2008-10-17 15:01:01 -0500 (Fri, 17 Oct 2008) | 1 line clarify CALL_FUNCTION #4141 ................ r66964 | georg.brandl | 2008-10-17 16:41:49 -0500 (Fri, 17 Oct 2008) | 2 lines Fix duplicate word. ................ r66973 | armin.ronacher | 2008-10-19 03:27:43 -0500 (Sun, 19 Oct 2008) | 3 lines Fixed #4067 by implementing _attributes and _fields for the AST root node. ................