1. ac5164d Issue #23583: Fixed writing unicode to standard output stream in IDLE. by Serhiy Storchaka · 10 years ago
  2. b5daa3d Issue #23180: Rename IDLE "Windows" menu item to "Window". Patch by Al Sweigart. by Ned Deily · 10 years ago
  3. 08da46e Issue #22614: Don't try to update deleted text. Patch by Serhiy Storchaka. by Terry Jan Reedy · 11 years ago
  4. 987a02b Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar. by Terry Jan Reedy · 11 years ago
  5. bee003c Issue #22420: Avoid 'write to None' crashes by using print instead. by Terry Jan Reedy · 11 years ago
  6. 25327d4 Issue #14105: Stop removing breakpoints from Idle editors. by Terry Jan Reedy · 11 years ago
  7. 57847df Issue #17654: Ensure IDLE menus are customized properly on OS X for by Ned Deily · 11 years ago
  8. 4ade2d2 Issue #20406: Use Python application icons for Idle window title bars. by Terry Jan Reedy · 11 years ago
  9. 0b6b335 Issue #20058: sys.stdin.readline() in IDLE now always returns only one line. by Serhiy Storchaka · 11 years ago
  10. 278543d Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial by Ned Deily · 11 years ago
  11. 7057f3f Issue #19481: print() of unicode, str or bytearray subclass instance in IDLE by Serhiy Storchaka · 11 years ago
  12. b638a38 Issue #18425: Add docstrings to IdleHistory.py. Remove redundant 'history_' by Terry Jan Reedy · 12 years ago
  13. 2b14986 Issue #18316: Update idlelib 2.7 except clauses to ease backports. by Terry Jan Reedy · 12 years ago
  14. 8eab008 Issue *18081, #18242: Change Idle warnings capture in PyShell and run to stop by Terry Jan Reedy · 12 years ago
  15. 16ce43a #5492: Avoid traceback when exiting IDLE caused by a race condition. by Roger Serwy · 12 years ago
  16. 674f4fa Issue #17532: Always include Options menu for IDLE on OS X. by Ned Deily · 12 years ago
  17. 53dc4f0 #17585: Fixed IDLE regression. Now closes when using exit() or quit(). by Roger Serwy · 12 years ago
  18. ad8cad3 #14254: IDLE now handles readline correctly across shell restarts. by Roger Serwy · 12 years ago
  19. d7c9d9c #17614: IDLE no longer raises exception when quickly closing a file. by Roger Serwy · 12 years ago
  20. 34d0c66 #6698: IDLE now opens just an editor window when configured to do so. by Roger Serwy · 12 years ago
  21. d676a3a Issue #17390: Display Python version on Idle title bar. Patch by Edmond Burnett. by Terry Jan Reedy · 12 years ago
  22. 9abc830 Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBase by Serhiy Storchaka · 12 years ago
  23. 5018db7 Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu by Andrew Svetlov · 13 years ago
  24. 8a15c37 Issue #9803: Don't close IDLE on saving if breakpoint is open. by Andrew Svetlov · 13 years ago
  25. e2b5624 Issue #15318: Prevent writing to sys.stdin. Patch by Roger Serwy and myself. by Martin v. Löwis · 13 years ago
  26. f8fc674 Issue 13532: Allow bytearrays to be written also. by Terry Jan Reedy · 13 years ago
  27. 9e6bf1a Widen test to support unicode. by Martin v. Löwis · 13 years ago
  28. e8e4e14 - Issue #13532: Check that arguments to sys.stdout.write are strings. by Martin v. Löwis · 13 years ago
  29. 5e247b7 Issue #14962: Update text coloring in IDLE shell window after changing by Ned Deily · 13 years ago
  30. eaa7e78 Issue #10365: File open dialog now works instead of crashing by Terry Jan Reedy · 13 years ago
  31. 7c010ee #3573: idle now doesn't hungs if launched as: idle -e <directory> by Andrew Svetlov · 13 years ago
  32. 1d4ae48 whitespace3 by Terry Jan Reedy · 13 years ago
  33. b98000a #13506 Add '' to path for interactive interpreter by adding with_cwd parameter by Terry Jan Reedy · 13 years ago
  34. 40ad041 Issue #4625: If IDLE cannot write to its recent file or breakpoint by Ned Deily · 13 years ago
  35. 86d669b Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart. by Ned Deily · 14 years ago
  36. 13502b1 Fix closes issue12438 - idlelib.PyShell's showformatwarning method was passing an incorrect arg. by Senthil Kumaran · 14 years ago
  37. 2a6f4b3 Merged revisions 88003 via svnmerge from by Ned Deily · 14 years ago
  38. c569cfe Merged revisions 83103 via svnmerge from by Ezio Melotti · 15 years ago
  39. d630c04 #7092: Fix additional "-3" warnings in the idlelib package, and convert to absolute imports. by Florent Xicluna · 15 years ago
  40. c8a730b Syntax cleanup `== None` -> `is None` by Florent Xicluna · 15 years ago
  41. f198ac2 Issue #3926: Fix the usage of the new showwarnings and formatwarning. by Guilherme Polo · 16 years ago
  42. 013d6cc Allow multiple IDLE GUI/subprocess pairs to exist by Kurt B. Kaiser · 16 years ago
  43. bf3f69e Remove startup firewall message. That is handled by an error dialog by Raymond Hettinger · 16 years ago
  44. b76444b use new showwarnings signature for idle #3391 by Benjamin Peterson · 17 years ago
  45. 6634bf2 Tkinter rename reversal: remove tkinter package, adapt imports and docs. by Georg Brandl · 17 years ago
  46. ad9afeb Tkinter rename, step 2: fix imports and add stub modules. by Georg Brandl · 17 years ago
  47. 93cdae5 Home / Control-A toggles between left margin and end of leading white by Kurt B. Kaiser · 17 years ago
  48. 5b63acd #2503 make singletons compared with "is" not == or != by Benjamin Peterson · 17 years ago
  49. 85897c9 Remove unused theme that was causing a fault in p3k. by Kurt B. Kaiser · 18 years ago
  50. dddeb0e Clean up ModifiedInterpreter.runcode() structure by Kurt B. Kaiser · 18 years ago
  51. d076153 Bug #813342: Start the IDLE subprocess with -Qnew if the parent by Georg Brandl · 19 years ago
  52. e0b6735 Add comment explaining that error msgs may be due to user code when by Kurt B. Kaiser · 19 years ago
  53. 7ae3548 File menu hotkeys: there were three 'p' assignments. Reassign the by Kurt B. Kaiser · 19 years ago
  54. f137e1d Get quit() and exit() to work cleanly when not using subprocess. by Kurt B. Kaiser · 19 years ago
  55. d112bc7 Patch #1540892: site.py Quitter() class attempts to close sys.stdin by Kurt B. Kaiser · 19 years ago
  56. cd3d8be Retrieval of previous shell command was not always preserving indentation by Kurt B. Kaiser · 19 years ago
  57. be332e4 As a slight enhancement to the previous checkin, improve the by Kurt B. Kaiser · 19 years ago
  58. 312e5af 1. When used w/o subprocess, all exceptions were preceeded by an error by Kurt B. Kaiser · 19 years ago
  59. b3c4d16 EditorWindow failed when used stand-alone if sys.ps1 not set. by Kurt B. Kaiser · 19 years ago
  60. 4f96f1f Whitespace normalization. by Tim Peters · 19 years ago
  61. 19302d9 This patch improves the L&F of IDLE on OSX. The changes are conditionalized on by Ronald Oussoren · 19 years ago
  62. b175445 Merge IDLE-syntax-branch r39668:41449 into trunk by Kurt B. Kaiser · 19 years ago
  63. 6203196 Remove unused import by Neal Norwitz · 20 years ago
  64. 8fa7eb5 Remove dead code M IdleHistory.py M PyShell.py by Kurt B. Kaiser · 20 years ago
  65. a7daba6 <Enter> when cursor is on a previous command retrieves that command. Instead by Kurt B. Kaiser · 20 years ago
  66. 935ea9a Improve subprocess link error notification M NEWS.txt M PyShell.py M rpc.py by Kurt B. Kaiser · 20 years ago
  67. 6af4498 1. Polish tabbing code. by Kurt B. Kaiser · 20 years ago
  68. 5c3df35 The GUI was hanging if the shell window was closed while a raw_input() by Kurt B. Kaiser · 20 years ago
  69. dcba662 The remote procedure call module rpc.py can now access data attributes of by Kurt B. Kaiser · 20 years ago
  70. f7a8899 The change in the linecache.checkcache() signature at rev 1.13 caused IDLE to exit by Kurt B. Kaiser · 20 years ago
  71. 183403a 1. If user passes a non-existant filename on the commandline, just open by Kurt B. Kaiser · 21 years ago
  72. d916142 whitespace normalization by Skip Montanaro · 21 years ago
  73. 49a5fe1 Redirect the warning stream to the shell during the ScriptBinding check of user code by Kurt B. Kaiser · 21 years ago
  74. 4d5bc60 Noam Raphel: Further developemt of CodeContext feature. by Kurt B. Kaiser · 21 years ago
  75. 73360a3 Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe by Kurt B. Kaiser · 21 years ago
  76. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  77. 7663729 There was an error in the Tk error dialog fix at Rev 1.84 which caused starting by Kurt B. Kaiser · 21 years ago
  78. af3eb87 Added a Tk error dialog to run.py inform the user if the subprocess can't by Kurt B. Kaiser · 21 years ago
  79. 2303b1c Keybindings with the Shift modifier now work correctly. So do bindings by Kurt B. Kaiser · 21 years ago
  80. b785518 IDLE didn't start correctly when Python was installed in "Program Files" by Kurt B. Kaiser · 22 years ago
  81. 220fecf Added a banner to the shell startup message discussing possible by Kurt B. Kaiser · 22 years ago
  82. 931237e SF patch #768187: replace apply(f, args, kwds) with f(*args, **kwds) by Raymond Hettinger · 22 years ago
  83. bea57c6 SF Bug 767794 "Break or continue outside loop causes crash" by Kurt B. Kaiser · 22 years ago
  84. bcc651a Idlefork patch #682347: convert Unicode strings from readline to by Martin v. Löwis · 22 years ago
  85. 9e8b828 Support testing in .../Lib/idlelib when calling <python PyShell.py> by Kurt B. Kaiser · 22 years ago
  86. b3a0a66 Remove the 2.2 compatibility module boolcheck.py and related code by Kurt B. Kaiser · 22 years ago
  87. ae8bbff Remove reference to IDLEfork by Kurt B. Kaiser · 22 years ago
  88. 24d7e0c Avoid problem resolving 'localhost' by Kurt B. Kaiser · 22 years ago
  89. 9f36609 Modify the remote stack viewer to work in the threaded subprocess. by Kurt B. Kaiser · 22 years ago
  90. 62df044 Added a config-main General option to delete sys.exitfunc. The default by Kurt B. Kaiser · 22 years ago
  91. 8d1f11b Whitespace Normalization Modified Files: PyShell.py ScriptBinding.py buildapp.py by Kurt B. Kaiser · 22 years ago
  92. 6f80594 Improved the RESTART annotation in the shell window when the user by Kurt B. Kaiser · 22 years ago
  93. 67fd0ea 1. Stake Freddy. by Kurt B. Kaiser · 22 years ago
  94. 88957d8 Fix race exposed by 2.4 GHz XP box: Don't tear down PyShell until by Kurt B. Kaiser · 22 years ago
  95. 11659ad 1. When a module is run from an EditorWindow, if its directory is not in by Kurt B. Kaiser · 22 years ago
  96. 8f570a7 1. Add a command line switch to run without the subprocess by Kurt B. Kaiser · 22 years ago
  97. 5db4843 1. Make the startup more robust by not spawning the subprocess if IDLE by Kurt B. Kaiser · 22 years ago
  98. 7f38ec0 1. Restore the capability to run and debug without a subprocess. by Kurt B. Kaiser · 22 years ago
  99. 2398d57 1. The command-line arguments for subprocesses no longer need to be by Tony Lownds · 22 years ago
  100. 9ec454e 1. RemoteDebugger now runs user code in subprocess MainThread by Kurt B. Kaiser · 22 years ago