4 2001-07-20 11:35 elguavas
6 * README.txt, NEWS.txt: bring up to date for 0.8.1 release
8 2001-07-19 16:40 elguavas
10 * IDLEFORK.html: replaced by IDLEFORK-index.html
12 2001-07-19 16:39 elguavas
14 * IDLEFORK-index.html: updated placeholder idlefork homepage
16 2001-07-19 14:49 elguavas
18 * ChangeLog, EditorWindow.py, INSTALLATION, NEWS.txt, README.txt,
20 minor tidy-ups ready for 0.8.1 alpha tarball release
24 * INSTALLATION, setup.py: INSTALLATION: Remove the coexist.patch
27 **************** setup.py:
29 Remove the idles script, add some words on IDLE Fork to the
30 long_description, and clean up some line spacing.
34 * coexist.patch: Put this in the attic, at least for now...
38 * PyShell.py, idle, idles: Implement idle command interface as
39 suggested by GvR [idle-dev] 16 July **************** PyShell: Added
42 usage: idle.py [-c command] [-d] [-i] [-r script] [-s] [-t title]
45 idle file(s) (without options) edit the file(s)
47 -c cmd run the command in a shell -d enable the
48 debugger -i open an interactive shell -i file(s) open a
49 shell and also an editor window for each file -r script run a file
50 as a script in a shell -s run $IDLESTARTUP or
51 $PYTHONSTARTUP before anything else -t title set title of shell
54 Remaining arguments are applied to the command (-c) or script (-r).
56 ****************** idles: Removed the idles script, not needed
58 ****************** idle: Removed the IdleConf references, not
63 * INSTALLATION, coexist.patch: Added installation instructions.
65 Added a patch which modifies idlefork so that it can co-exist with
66 "official" IDLE in the site-packages directory. This patch is not
67 necessary if only idlefork IDLE is installed. See INSTALLATION for
72 * idles: Add a script "idles" which opens a Python Shell window.
74 The default behaviour of idlefork idle is to open an editor window
75 instead of a shell. Complex expressions may be run in a fresh
76 environment by selecting "run". There are times, however, when a
77 shell is desired. Though one can be started by "idle -t 'foo'",
78 this script is more convenient. In addition, a shell and an editor
79 window can be started in parallel by "idles -e foo.py".
83 * PyShell.py: Call out IDLE Fork in startup message.
87 * PyShell.py, setup.py: Add a script "idles" which opens a Python
90 The default behaviour of idlefork idle is to open an editor window
91 instead of a shell. Complex expressions may be run in a fresh
92 environment by selecting "run". There are times, however, when a
93 shell is desired. Though one can be started by "idle -t 'foo'",
94 this script is more convenient. In addition, a shell and an editor
95 window can be started in parallel by "idles -e foo.py".
99 * pyclbr.py, tabnanny.py: tabnanny and pyclbr are now found in /Lib
103 * BrowserControl.py: Remove, was retained for 1.5.2 support
107 * setup.py: Installing Idle to site-packages via Distutils does not
108 copy the Idle help.txt file.
110 Ref SF Python Patch 422471
114 * keydefs.py: py-cvs-2001_07_13 (Rev 1.3) merge
116 "Make copy, cut and paste events case insensitive. Reported by
117 Patrick K. O'Brien on idle-dev. (Should other bindings follow
122 * idle.py: py-cvs-2001_07_13 (Rev 1.4) merge
124 "Move the action of loading the configuration to the IdleConf
125 module rather than the idle.py script. This has advantages and
126 disadvantages; the biggest advantage being that we can more easily
127 have an alternative main program." --GvR
131 * extend.txt: py-cvs-2001_07_13 (Rev 1.4) merge
133 "Quick update to the extension mechanism (extend.py is gone, long
134 live config.txt)" --GvR
138 * StackViewer.py: py-cvs-2001_07_13 (Rev 1.16) merge
140 "Refactored, with some future plans in mind. This now uses the new
141 gotofileline() method defined in FileList.py" --GvR
145 * PyShell.py: py-cvs-2001_07_13 (Rev 1.34) merge
147 "Amazing. A very subtle change in policy in descr-branch actually
148 found a bug here. Here's the deal: Class PyShell derives from
149 class OutputWindow. Method PyShell.close() wants to invoke its
150 parent method, but because PyShell long ago was inherited from
151 class PyShellEditorWindow, it invokes
152 PyShelEditorWindow.close(self). Now, class PyShellEditorWindow
153 itself derives from class OutputWindow, and inherits the close()
154 method from there without overriding it. Under the old rules,
155 PyShellEditorWindow.close would return an unbound method restricted
156 to the class that defined the implementation of close(), which was
157 OutputWindow.close. Under the new rules, the unbound method is
158 restricted to the class whose method was requested, that is
159 PyShellEditorWindow, and this was correctly trapped as an error."
164 * PyParse.py: py-cvs-2001_07_13 (Rel 1.9) merge
166 "Taught IDLE's autoident parser that "yield" is a keyword that
167 begins a stmt. Along w/ the preceding change to keyword.py, making
168 all this work w/ a future-stmt just looks harder and harder."
171 (From Rel 1.8: "Hack to make this still work with Python 1.5.2.
176 * IdleConf.py: py-cvs-2001_07_13 (Rel 1.7) merge
178 "Move the action of loading the configuration to the IdleConf
179 module rather than the idle.py script. This has advantages and
180 disadvantages; the biggest advantage being that we can more easily
181 have an alternative main program." --GvR
185 * FileList.py: py-cvs-2000_07_13 (Rev 1.9) merge
187 "Delete goodname() method, which is unused. Add gotofileline(), a
188 convenience method which I intend to use in a variant. Rename
189 test() to _test()." --GvR
191 This was an interesting merge. The join completely missed removing
192 goodname(), which was adjacent, but outside of, a small conflict.
193 I only caught it by comparing the 1.1.3.2/1.1.3.3 diff. CVS ain't
198 * EditorWindow.py: py-cvs-2000_07_13 (Rev 1.38) merge "Remove
199 legacy support for the BrowserControl module; the webbrowser module
200 has been included since Python 2.0, and that is the preferred
205 * EditorWindow.py, FileList.py, IdleConf.py, PyParse.py,
206 PyShell.py, StackViewer.py, extend.txt, idle.py, keydefs.py: Import
207 the 2001 July 13 23:59 GMT version of Python CVS IDLE on the
208 existing 1.1.3 vendor branch named py-cvs-vendor-branch. Release
209 tag is py-cvs-2001_07_13.
213 * Icons/python.gif: py-cvs-rel2_1 (Rev 1.2) merge Copied py-cvs rev
214 1.2 changed file to idlefork MAIN
218 * Icons/minusnode.gif: py-cvs-rel2_1 (Rev 1.2) merge Copied py-cvs
219 1.2 changed file to idlefork MAIN
223 * ScrolledList.py: py-cvs-rel2_1 (rev 1.5) merge - whitespace
228 * Separator.py: py-cvs-rel2_1 (Rev 1.3) merge - whitespace
233 * StackViewer.py: py-cvs-rel2_1 (Rev 1.15) merge - whitespace
238 * ToolTip.py: py-cvs-rel2_1 (Rev 1.2) merge - whitespace
243 * PyShell.py: cvs-py-rel2_1 (Rev 1.29 - 1.33) merge
245 Merged the following py-cvs revs without conflict: 1.29 Reduce
246 copyright text output at startup 1.30 Delay setting sys.args until
247 Tkinter is fully initialized 1.31 Whitespace normalization 1.32
248 Turn syntax warning into error when interactive 1.33 Fix warning
251 Note that module is extensively modified wrt py-cvs
255 * PyParse.py: py-cvs-rel2_1 (Rev 1.6 - 1.8) merge Fix autoindent
256 bug and deflect Unicode from text.get()
260 * Percolator.py: py-cvs-rel2_1 (Rev 1.3) "move "from Tkinter import
261 *" to module level" --jhylton
265 * PathBrowser.py: py-cvs-rel2_1 (Rev 1.6) merge - whitespace
270 * ParenMatch.py: cvs-py-rel2_1 (Rev 1.5) merge - whitespace
275 * ObjectBrowser.py: py-cvs-rel2_1 (Rev 1.3) merge "Make the test
276 program work outside IDLE." -- GvR
280 * MultiStatusBar.py: py-cvs-rel2_1 (Rev 1.2) merge - whitespace
285 * MultiScrolledLists.py: py-cvs-rel2_1 (Rev 1.2) merge - whitespace
290 * IdleHistory.py: py-cvs-rel2_1 (Rev 1.4) merge - whitespace
295 * IdleConf.py: py-cvs-rel2_1 (Rev 1.6) merge - whitespace
300 * IOBinding.py: py-cvs-rel2_1 (Rev 1.4) merge - move "import *" to
305 * FormatParagraph.py: py-cvs-rel2_1 (Rev 1.9) merge - whitespace
310 * FileList.py: py-cvs-rel2_1 (Rev 1.8) merge - whitespace
315 * EditorWindow.py: py-cvs-rel2_1 (Rev 1.33 - 1.37) merge
317 VP IDLE version depended on VP's ExecBinding.py and spawn.py to get
318 the path to the Windows Doc directory (relative to python.exe).
319 Removed this conflicting code in favor of py-cvs updates which on
320 Windows use a hard coded path relative to the location of this
321 module. py-cvs updates include support for webbrowser.py. Module
322 still has BrowserControl.py for 1.5.2 support.
324 At this point, the differences wrt py-cvs relate to menu
329 * ConfigParser.py: py-cvs-rel2_1 merge - Remove, lives in /Lib
333 * Delegator.py: py-cvs-rel2_1 (Rev 1.3) merge - whitespace
338 * Debugger.py: py-cvs-rel2_1 (Rev 1.15) merge - whitespace
343 * ColorDelegator.py: py-cvs-rel2_1 (Rev 1.11 and 1.12) merge
344 Colorize "as" after "import" / use DEBUG instead of __debug__
348 * ClassBrowser.py: py-cvs-rel2_1 (Rev 1.12) merge - whitespace
353 * BrowserControl.py: py-cvs-rel2_1 (Rev 1.1) merge - New File -
354 Force HEAD to trunk with -f Note: browser.py was renamed
355 BrowserControl.py 10 May 2000. It provides a collection of classes
356 and convenience functions to control external browsers "for 1.5.2
357 support". It was removed from py-cvs 18 April 2001.
361 * CallTips.py: py-cvs-rel2_1 (Rev 1.8) merge - whitespace
366 * CallTipWindow.py: py-cvs-rel2_1 (Rev 1.3) merge - whitespace
371 * AutoExpand.py: py-cvs-rel1_2 (Rev 1.4) merge, "Add Alt-slash to
372 Unix keydefs (I somehow need it on RH 6.2). Get rid of assignment
373 to unused self.text.wordlist." --GvR
375 2001-07-12 16:54 elguavas
377 * ReplaceDialog.py: py-cvs merge, python 1.5.2 compatability
379 2001-07-12 16:46 elguavas
381 * ScriptBinding.py: py-cvs merge, better error dialog
383 2001-07-12 16:38 elguavas
385 * TODO.txt: py-cvs merge, additions
387 2001-07-12 15:35 elguavas
389 * WindowList.py: py-cvs merge, correct indentation
391 2001-07-12 15:24 elguavas
393 * config.txt: py-cvs merge, correct typo
395 2001-07-12 15:21 elguavas
397 * help.txt: py-cvs merge, update colour changing info
399 2001-07-12 14:51 elguavas
401 * idle.py: py-cvs merge, idle_dir loading changed
403 2001-07-12 14:44 elguavas
405 * idlever.py: py-cvs merge, version update
409 * BrowserControl.py: Initial revision
413 * AutoExpand.py, BrowserControl.py, CallTipWindow.py, CallTips.py,
414 ClassBrowser.py, ColorDelegator.py, Debugger.py, Delegator.py,
415 EditorWindow.py, FileList.py, FormatParagraph.py, IOBinding.py,
416 IdleConf.py, IdleHistory.py, MultiScrolledLists.py,
417 MultiStatusBar.py, ObjectBrowser.py, OutputWindow.py,
418 ParenMatch.py, PathBrowser.py, Percolator.py, PyParse.py,
419 PyShell.py, RemoteInterp.py, ReplaceDialog.py, ScriptBinding.py,
420 ScrolledList.py, Separator.py, StackViewer.py, TODO.txt,
421 ToolTip.py, WindowList.py, config.txt, help.txt, idle, idle.bat,
422 idle.py, idlever.py, setup.py, Icons/minusnode.gif,
423 Icons/python.gif: Import the release 2.1 version of Python CVS IDLE
424 on the existing 1.1.3 vendor branch named py-cvs-vendor-branch,
425 with release tag py-cvs-rel2_1.
429 * AutoExpand.py, AutoIndent.py, Bindings.py, CallTipWindow.py,
430 CallTips.py, ChangeLog, ClassBrowser.py, ColorDelegator.py,
431 Debugger.py, Delegator.py, EditorWindow.py, FileList.py,
432 FormatParagraph.py, FrameViewer.py, GrepDialog.py, IOBinding.py,
433 IdleConf.py, IdleHistory.py, MultiScrolledLists.py,
434 MultiStatusBar.py, NEWS.txt, ObjectBrowser.py, OldStackViewer.py,
435 OutputWindow.py, ParenMatch.py, PathBrowser.py, Percolator.py,
436 PyParse.py, PyShell.py, README.txt, RemoteInterp.py,
437 ReplaceDialog.py, ScriptBinding.py, ScrolledList.py,
438 SearchBinding.py, SearchDialog.py, SearchDialogBase.py,
439 SearchEngine.py, Separator.py, StackViewer.py, TODO.txt,
440 ToolTip.py, TreeWidget.py, UndoDelegator.py, WidgetRedirector.py,
441 WindowList.py, ZoomHeight.py, __init__.py, config-unix.txt,
442 config-win.txt, config.txt, eventparse.py, extend.txt, help.txt,
443 idle.bat, idle.py, idle.pyw, idlever.py, keydefs.py, pyclbr.py,
444 tabnanny.py, testcode.py, Icons/folder.gif, Icons/minusnode.gif,
445 Icons/openfolder.gif, Icons/plusnode.gif, Icons/python.gif,
446 Icons/tk.gif: Import the 9 March 2000 version of Python CVS IDLE as
447 1.1.3 vendor branch named py-cvs-vendor-branch.
451 * Icons/: folder.gif, minusnode.gif, openfolder.gif, plusnode.gif,
452 python.gif, tk.gif: Null commit with -f option to force an uprev
453 and put HEADs firmly on the trunk.
457 * AutoExpand.py, AutoIndent.py, Bindings.py, CallTipWindow.py,
458 CallTips.py, ChangeLog, ClassBrowser.py, ColorDelegator.py,
459 ConfigParser.py, Debugger.py, Delegator.py, EditorWindow.py,
460 ExecBinding.py, FileList.py, FormatParagraph.py, FrameViewer.py,
461 GrepDialog.py, IDLEFORK.html, IOBinding.py, IdleConf.py,
462 IdleHistory.py, MultiScrolledLists.py, MultiStatusBar.py, NEWS.txt,
463 ObjectBrowser.py, OldStackViewer.py, OutputWindow.py,
464 ParenMatch.py, PathBrowser.py, Percolator.py, PyParse.py,
465 PyShell.py, README.txt, Remote.py, RemoteInterp.py,
466 ReplaceDialog.py, ScriptBinding.py, ScrolledList.py,
467 SearchBinding.py, SearchDialog.py, SearchDialogBase.py,
468 SearchEngine.py, Separator.py, StackViewer.py, TODO.txt,
469 ToolTip.py, TreeWidget.py, UndoDelegator.py, WidgetRedirector.py,
470 WindowList.py, ZoomHeight.py, __init__.py, config-unix.txt,
471 config-win.txt, config.txt, eventparse.py, extend.txt, help.txt,
472 idle, idle.bat, idle.py, idle.pyw, idlever.py, keydefs.py,
473 loader.py, protocol.py, pyclbr.py, setup.py, spawn.py, tabnanny.py,
474 testcode.py: Null commit with -f option to force an uprev and put
475 HEADs firmly on the trunk.
477 2001-06-27 10:24 elguavas
479 * IDLEFORK.html: updated contact details
481 2001-06-25 17:23 elguavas
483 * idle, RemoteInterp.py, setup.py: Initial revision
485 2001-06-25 17:23 elguavas
487 * idle, RemoteInterp.py, setup.py: import current python cvs idle
490 2001-06-24 15:10 elguavas
492 * IDLEFORK.html: tiny change to test new syncmail setup
494 2001-06-24 14:41 elguavas
496 * IDLEFORK.html: change to new developer contact, also a test
497 commit for new syncmail setup
499 2001-06-23 18:15 elguavas
501 * IDLEFORK.html: tiny test update for revitalised idle-fork
503 2000-09-24 17:29 nriley
505 * protocol.py: Fixes for Python 1.6 compatibility - socket bind and
506 connect get a tuple instead two arguments.
508 2000-09-24 17:28 nriley
510 * spawn.py: Change for Python 1.6 compatibility - UNIX's 'os'
511 module defines 'spawnv' now, so we check for 'fork' first.
513 2000-08-15 22:51 nowonder
516 corrected email address
518 2000-08-15 22:47 nowonder
521 added .html file for http://idlefork.sourceforge.net
523 2000-08-15 11:13 dscherer
525 * AutoExpand.py, AutoIndent.py, Bindings.py, CallTipWindow.py,
526 CallTips.py, __init__.py, ChangeLog, ClassBrowser.py,
527 ColorDelegator.py, ConfigParser.py, Debugger.py, Delegator.py,
528 FileList.py, FormatParagraph.py, FrameViewer.py, GrepDialog.py,
529 IOBinding.py, IdleConf.py, IdleHistory.py, MultiScrolledLists.py,
530 MultiStatusBar.py, NEWS.txt, ObjectBrowser.py, OldStackViewer.py,
531 OutputWindow.py, ParenMatch.py, PathBrowser.py, Percolator.py,
532 PyParse.py, PyShell.py, README.txt, ReplaceDialog.py,
533 ScriptBinding.py, ScrolledList.py, SearchBinding.py,
534 SearchDialog.py, SearchDialogBase.py, SearchEngine.py,
535 Separator.py, StackViewer.py, TODO.txt, ToolTip.py, TreeWidget.py,
536 UndoDelegator.py, WidgetRedirector.py, WindowList.py, help.txt,
537 ZoomHeight.py, config-unix.txt, config-win.txt, config.txt,
538 eventparse.py, extend.txt, idle.bat, idle.py, idle.pyw, idlever.py,
539 keydefs.py, loader.py, pyclbr.py, tabnanny.py, testcode.py,
540 EditorWindow.py, ExecBinding.py, Remote.py, protocol.py, spawn.py,
541 Icons/folder.gif, Icons/minusnode.gif, Icons/openfolder.gif,
542 Icons/plusnode.gif, Icons/python.gif, Icons/tk.gif: Initial
545 2000-08-15 11:13 dscherer
547 * AutoExpand.py, AutoIndent.py, Bindings.py, CallTipWindow.py,
548 CallTips.py, __init__.py, ChangeLog, ClassBrowser.py,
549 ColorDelegator.py, ConfigParser.py, Debugger.py, Delegator.py,
550 FileList.py, FormatParagraph.py, FrameViewer.py, GrepDialog.py,
551 IOBinding.py, IdleConf.py, IdleHistory.py, MultiScrolledLists.py,
552 MultiStatusBar.py, NEWS.txt, ObjectBrowser.py, OldStackViewer.py,
553 OutputWindow.py, ParenMatch.py, PathBrowser.py, Percolator.py,
554 PyParse.py, PyShell.py, README.txt, ReplaceDialog.py,
555 ScriptBinding.py, ScrolledList.py, SearchBinding.py,
556 SearchDialog.py, SearchDialogBase.py, SearchEngine.py,
557 Separator.py, StackViewer.py, TODO.txt, ToolTip.py, TreeWidget.py,
558 UndoDelegator.py, WidgetRedirector.py, WindowList.py, help.txt,
559 ZoomHeight.py, config-unix.txt, config-win.txt, config.txt,
560 eventparse.py, extend.txt, idle.bat, idle.py, idle.pyw, idlever.py,
561 keydefs.py, loader.py, pyclbr.py, tabnanny.py, testcode.py,
562 EditorWindow.py, ExecBinding.py, Remote.py, protocol.py, spawn.py,
563 Icons/folder.gif, Icons/minusnode.gif, Icons/openfolder.gif,
564 Icons/plusnode.gif, Icons/python.gif, Icons/tk.gif: Modified IDLE
568 original IDLE ChangeLog:
569 ========================
571 Tue Feb 15 18:08:19 2000 Guido van Rossum <guido@cnri.reston.va.us>
573 * NEWS.txt: Notice status bar and stack viewer.
575 * EditorWindow.py: Support for Moshe's status bar.
577 * MultiStatusBar.py: Status bar code -- by Moshe Zadka.
580 Adding the old stack viewer implementation back, for the debugger.
582 * StackViewer.py: New stack viewer, uses a tree widget.
583 (XXX: the debugger doesn't yet use this.)
586 Correct a typo and remove an unqualified except that was hiding the error.
588 * ClassBrowser.py: Add an XXX comment about the ClassBrowser AIP.
590 * ChangeLog: Updated change log.
592 * NEWS.txt: News update. Probably incomplete; what else is new?
595 Updated for pending IDLE 0.5 release (still very rough -- just getting
596 it out in a more convenient format than CVS).
598 * TODO.txt: Tiny addition.
600 Thu Sep 9 14:16:02 1999 Guido van Rossum <guido@cnri.reston.va.us>
602 * TODO.txt: A few new TODO entries.
604 Thu Aug 26 23:06:22 1999 Guido van Rossum <guido@cnri.reston.va.us>
606 * Bindings.py: Add Python Documentation entry to Help menu.
609 Find the help.txt file relative to __file__ or ".", not in sys.path.
610 (Suggested by Moshe Zadka, but implemented differently.)
612 Add <<python-docs>> event which, on Unix, brings up Netscape pointing
613 to http://www.python.doc/current/ (a local copy would be nice but its
614 location can't be predicted). Windows solution TBD.
616 Wed Aug 11 14:55:43 1999 Guido van Rossum <guido@cnri.reston.va.us>
619 Moshe noticed an inconsistency in his comment, so I'm rephrasing it to
623 Patch inspired by Moshe Zadka to search for the Icons directory in the
624 same directory as __file__, rather than searching for it along sys.path.
625 This works better when idle is a package.
627 Thu Jul 15 13:11:02 1999 Guido van Rossum <guido@cnri.reston.va.us>
629 * TODO.txt: New wishes.
631 Sat Jul 10 13:17:35 1999 Guido van Rossum <guido@cnri.reston.va.us>
634 Make the color for stderr red (i.e. the standard warning/danger/stop
635 color) rather than green. Suggested by Sam Schulenburg.
637 Fri Jun 25 17:26:34 1999 Guido van Rossum <guido@cnri.reston.va.us>
639 * PyShell.py: Close debugger when closing. This may break a cycle.
641 * Debugger.py: Break cycle on close.
643 * ClassBrowser.py: Destroy the tree when closing.
645 * TreeWidget.py: Add destroy() method to recursively destroy a tree.
647 * PyShell.py: Extend _close() to break cycles.
648 Break some other cycles too (and destroy the root when done).
651 Add _close() method that does the actual cleanup (close() asks the
652 user what they want first if there's unsaved stuff, and may cancel).
653 It closes more than before.
655 Add unload_extensions() method to unload all extensions; called from
656 _close(). It calls an extension's close() method if it has one.
658 * Percolator.py: Add close() method that breaks cycles.
660 * WidgetRedirector.py: Add unregister() method.
661 Unregister everything at closing.
662 Don't call close() in __del__, rely on explicit call to close().
664 * IOBinding.py, FormatParagraph.py, CallTips.py:
665 Add close() method that breaks a cycle.
667 Fri Jun 11 15:03:00 1999 Guido van Rossum <guido@cnri.reston.va.us>
669 * AutoIndent.py, EditorWindow.py, FormatParagraph.py:
670 Tim Peters smart.patch:
674 + Added get_tabwidth & set_tabwidth "virtual text" methods, that get/set the
675 widget's view of what a tab means.
677 + Moved TK_TABWIDTH_DEFAULT here from AutoIndent.
679 + Renamed Mark's get_selection_index to get_selection_indices (sorry, Mark,
680 but the name was plain wrong <wink>).
682 FormatParagraph.py: renamed use of get_selection_index.
686 + Moved TK_TABWIDTH_DEFAULT to EditorWindow.
688 + Rewrote set_indentation_params to use new VTW get/set_tabwidth methods.
690 + Changed smart_backspace_event to delete whitespace back to closest
691 preceding virtual tab stop or real character (note that this may require
692 inserting characters if backspacing over a tab!).
694 + Nuked almost references to the selection tag, in favor of using
695 get_selection_indices. The sole exception is in set_region, for which no
696 "set_selection" abstraction has yet been agreed upon.
698 + Had too much fun using the spiffy new features of the format-paragraph
701 Thu Jun 10 17:48:02 1999 Guido van Rossum <guido@cnri.reston.va.us>
703 * FormatParagraph.py:
704 Code by Mark Hammond to format paragraphs embedded in comments.
705 Read the comments (which I reformatted using the new feature :-)
706 for some limitations.
709 Added abstraction get_selection_index() (Mark Hammond). Also
710 reformatted some comment blocks to show off a cool feature I'm about
714 Adapt to the new pyclbr's support of listing top-level functions. If
715 this functionality is not present (e.g. when used with a vintage
716 Python 1.5.2 installation) top-level functions are not listed.
718 (Hmm... Any distribution of IDLE 0.5 should probably include a copy
719 of the new pyclbr.py!)
722 Fix off-by-one error in Tim's recent change to comment_region(): the
723 list of lines returned by get_region() contains an empty line at the
724 end representing the start of the next line, and this shouldn't be
728 Mark Hammond writes: Here is another change that allows it to work for
729 class creation - tries to locate an __init__ function. Also updated
730 the test code to reflect your new "***" change.
733 Mark Hammond writes: Tim's suggestion of copying the font for the
734 CallTipWindow from the text control makes sense, and actually makes
735 the control look better IMO.
737 Wed Jun 9 20:34:57 1999 Guido van Rossum <guido@cnri.reston.va.us>
740 Append "..." if the appropriate flag (for varargs) in co_flags is set.
741 Ditto "***" for kwargs.
743 Tue Jun 8 13:06:07 1999 Guido van Rossum <guido@cnri.reston.va.us>
746 Hmm... Tim didn't turn "replace all" into a single undo block.
747 I think I like it better if it os, so here.
749 * ReplaceDialog.py: Tim Peters: made replacement atomic for undo/redo.
751 * AutoIndent.py: Tim Peters:
753 + Set usetabs=1. Editing pyclbr.py was driving me nuts <0.6 wink>.
754 usetabs=1 is the Emacs pymode default too, and thanks to indentwidth !=
755 tabwidth magical usetabs disabling, new files are still created with tabs
756 turned off. The only implication is that if you open a file whose first
757 indent is a single tab, IDLE will now magically use tabs for that file (and
758 set indentwidth to 8). Note that the whole scheme doesn't work right for
759 PythonWin, though, since Windows users typically set tabwidth to 4; Mark
760 probably has to hide the IDLE algorithm from them (which he already knows).
762 + Changed comment_region_event to stick "##" in front of every line. The
763 "holes" previously left on blank lines were visually confusing (made it
764 needlessly hard to figure out what to uncomment later).
766 Mon Jun 7 15:38:40 1999 Guido van Rossum <guido@cnri.reston.va.us>
768 * TreeWidget.py, ObjectBrowser.py:
769 Remove unnecessary reference to pyclbr from test() code.
771 * PyParse.py: Tim Peters:
773 Smarter logic for finding a parse synch point.
775 Does a half to a fifth the work in normal cases; don't notice the speedup,
776 but makes more breathing room for other extensions.
778 Speeds terrible cases by at least a factor of 10. "Terrible" == e.g. you put
779 """ at the start of Tkinter.py, undo it, zoom to the bottom, and start
780 typing in code. Used to take about 8 seconds for ENTER to respond, now some
781 large fraction of a second. The new code gets indented correctly, despite
782 that it all remains "string colored" until the colorizer catches up (after
783 which, ENTER appears instantaneous again).
785 Fri Jun 4 19:21:19 1999 Guido van Rossum <guido@cnri.reston.va.us>
787 * extend.py: Might as well enable CallTips by default.
788 If there are too many complaints I'll remove it again or fix it.
790 Thu Jun 3 14:32:16 1999 Guido van Rossum <guido@cnri.reston.va.us>
792 * AutoIndent.py, EditorWindow.py, PyParse.py:
793 New offerings by Tim Peters; he writes:
795 IDLE is now the first Python editor in the Universe not confused by my
798 As threatened, this defines IDLE's is_char_in_string function as a
799 method of EditorWindow. You just need to define one similarly in
800 whatever it is you pass as editwin to AutoIndent; looking at the
801 EditorWindow.py part of the patch should make this clear.
803 * GrepDialog.py: Enclose pattern in quotes in status message.
806 Mark Hammond fixed some comments and improved the way the tip text is
809 Wed Jun 2 18:18:57 1999 Guido van Rossum <guido@cnri.reston.va.us>
812 My fix to Mark's code: restore the universal check on <KeyRelease>.
813 Always cancel on <Key-Escape> or <ButtonPress>.
816 A version that Mark Hammond posted to the newsgroup. Has some newer
817 stuff for getting the tip. Had to fix the Key-( and Key-) events
818 for Unix. Will have to re-apply my patch for catching KeyRelease and
819 ButtonRelease events.
821 * CallTipWindow.py, CallTips.py:
822 Call tips by Mark Hammond (plus tiny fix by me.)
825 Changes by Mark Hammond: (1) support optional output_sep argument to
826 the constructor so he can eliminate the sys.ps2 that PythonWin leaves
827 in the source; (2) remove duplicate history items.
830 Changes by Mark Hammond to allow using IDLE extensions in PythonWin as
831 well: make three dialog routines instance variables.
834 Change by Mark Hammond to allow using IDLE extensions in PythonWin as
835 well: make three dialog routines instance variables.
837 Tue Jun 1 20:06:44 1999 Guido van Rossum <guido@cnri.reston.va.us>
839 * AutoIndent.py: Hah! A fix of my own to Tim's code!
840 Unix bindings for <<toggle-tabs>> and <<change-indentwidth>> were
841 missing, and somehow that meant the events were never generated,
842 even though they were in the menu. The new Unix bindings are now
843 the same as the Windows bindings (M-t and M-u).
845 * AutoIndent.py, PyParse.py, PyShell.py: Tim Peters again:
847 The new version (attached) is fast enough all the time in every real module
848 I have <whew!>. You can make it slow by, e.g., creating an open list with
849 5,000 90-character identifiers (+ trailing comma) each on its own line, then
850 adding an item to the end -- but that still consumes less than a second on
851 my P5-166. Response time in real code appears instantaneous.
855 New feature: when hitting ENTER and the cursor is beyond the line's leading
856 indentation, whitespace is removed on both sides of the cursor; before
857 whitespace was removed only on the left; e.g., assuming the cursor is
858 between the comma and the space:
860 def something(arg1, arg2):
861 ^ cursor to the left of here, and hit ENTER
862 arg2): # new line used to end up here
863 arg2): # but now lines up the way you expect
865 New hack: AutoIndent has grown a context_use_ps1 Boolean config option,
866 defaulting to 0 (false) and set to 1 (only) by PyShell. Reason: handling
867 the fancy stuff requires looking backward for a parsing synch point; ps1
868 lines are the only sensible thing to look for in a shell window, but are a
869 bad thing to look for in a file window (ps1 lines show up in my module
870 docstrings often). PythonWin's shell should set this true too.
872 Persistent problem: strings containing def/class can still screw things up
873 completely. No improvement. Simplest workaround is on the user's head, and
874 consists of inserting e.g.
878 (or any other def/class) after the end of the multiline string that's
879 screwing them up. This is especially irksome because IDLE's syntax coloring
880 is *not* confused, so when this happens the colors don't match the
881 indentation behavior they see.
883 * AutoIndent.py: Tim Peters again:
885 [Tim, after adding some bracket smarts to AutoIndent.py]
887 > What it can't possibly do without reparsing large gobs of text is
888 > suggest a reasonable indent level after you've *closed* a bracket
889 > left open on some previous line.
892 The attached can, and actually fast enough to use -- most of the time. The
893 code is tricky beyond belief to achieve that, but it works so far; e.g.,
895 return len(string.expandtabs(str[self.stmt_start :
902 It's about as smart as pymode now, wrt both bracket and backslash
903 continuation rules. It does require reparsing large gobs of text, and if it
904 happens to find something that looks like a "def" or "class" or sys.ps1
905 buried in a multiline string, but didn't suck up enough preceding text to
906 see the start of the string, it's completely hosed. I can't repair that --
907 it's just too slow to reparse from the start of the file all the time.
909 AutoIndent has grown a new num_context_lines tuple attribute that controls
910 how far to look back, and-- like other params --this could/should be made
911 user-overridable at startup and per-file on the fly.
913 * PyParse.py: New file by Tim Peters:
915 One new file in the attached, PyParse.py. The LineStudier (whatever it was
916 called <wink>) class was removed from AutoIndent; PyParse subsumes its
919 * AutoIndent.py: Tim Peters keeps revising this module (more to come):
921 Removed "New tabwidth" menu binding.
923 Added "a tab means how many spaces?" dialog to block tabify and untabify. I
924 think prompting for this is good now: they're usually at-most-once-per-file
925 commands, and IDLE can't let them change tabwidth from the Tk default
926 anymore, so IDLE can no longer presume to have any idea what a tab means.
928 Irony: for the purpose of keeping comments aligned via tabs, Tk's
929 non-default approach is much nicer than the Emacs/Notepad/Codewright/vi/etc
933 1. Catch NameError on import (could be raised by case mismatch on Windows).
934 2. No longer need to reset pyclbr cache and show watch cursor when calling
935 ClassBrowser -- the ClassBrowser takes care of pyclbr and the TreeWidget
936 takes care of the watch cursor.
937 3. Reset the focus to the current window after error message about class
938 browser on buffer without filename.
940 * Icons/minusnode.gif, Icons/plusnode.gif: Missed a few.
942 * ClassBrowser.py, PathBrowser.py: Rewritten based on TreeWidget.py
944 * ObjectBrowser.py: Object browser, based on TreeWidget.py.
946 * TreeWidget.py: Tree widget done right.
948 * ToolTip.py: As yet unused code for tool tips.
951 Ensure sys.argv[0] is the script name on Run Script.
953 * ZoomHeight.py: Move zoom height functionality to separate function.
955 * Icons/folder.gif, Icons/openfolder.gif, Icons/python.gif, Icons/tk.gif:
956 A few icons used by ../TreeWidget.py and its callers.
958 * AutoIndent.py: New version by Tim Peters improves block opening test.
960 Fri May 21 04:46:17 1999 Guido van Rossum <guido@cnri.reston.va.us>
962 * Attic/History.py, PyShell.py: Rename History to IdleHistory.
963 Add isatty() to pseudo files.
965 * StackViewer.py: Make initial stack viewer wider
967 * TODO.txt: New wishes
969 * AutoIndent.py, EditorWindow.py, PyShell.py:
970 Much improved autoindent and handling of tabs,
973 Mon May 3 15:49:52 1999 Guido van Rossum <guido@cnri.reston.va.us>
975 * AutoIndent.py, EditorWindow.py, FormatParagraph.py, UndoDelegator.py:
978 I'm still unsure, but couldn't stand the virtual event trickery so tried a
979 different sin (adding undo_block_start/stop methods to the Text instance in
980 EditorWindow.py). Like it or not, it's efficient and works <wink>. Better
983 Give the attached a whirl. Even if you hate the implementation, I think
984 you'll like the results. Think I caught all the "block edit" cmds,
985 including Format Paragraph, plus subtler ones involving smart indents and
988 * WidgetRedirector.py: Tim Peters writes:
990 [W]hile trying to dope out how redirection works, stumbled into two
991 possible glitches. In the first, it doesn't appear to make sense to try to
992 rename a command that's already been destroyed; in the second, the name
993 "previous" doesn't really bring to mind "ignore the previous value" <wink>.
995 Fri Apr 30 19:39:25 1999 Guido van Rossum <guido@cnri.reston.va.us>
997 * __init__.py: Support for using idle as a package.
1000 Avoid listing files more than once (e.g. foomodule.so has two hits:
1001 once for foo + module.so, once for foomodule + .so).
1003 Mon Apr 26 22:20:38 1999 Guido van Rossum <guido@cnri.reston.va.us>
1005 * ChangeLog, ColorDelegator.py, PyShell.py: Tim Peters strikes again:
1007 Ho ho ho -- that's trickier than it sounded! The colorizer is working with
1008 "line.col" strings instead of Text marks, and the absolute coordinates of
1009 the point of interest can change across the self.update call (voice of
1010 baffled experience, when two quick backspaces no longer fooled it, but a
1011 backspace followed by a quick ENTER did <wink>).
1013 Anyway, the attached appears to do the trick. CPU usage goes way up when
1014 typing quickly into a long triple-quoted string, but the latency is fine for
1015 me (a relatively fast typist on a relatively slow machine). Most of the
1016 changes here are left over from reducing the # of vrbl names to help me
1017 reason about the logic better; I hope the code is a *little* easier to
1019 Fri Apr 23 14:01:25 1999 Guido van Rossum <guido@cnri.reston.va.us>
1022 Provide full arguments to __import__ so it works in packagized IDLE.
1024 Thu Apr 22 23:20:17 1999 Guido van Rossum <guido@cnri.reston.va.us>
1027 Bunch of updates necessary due to recent changes; added docs for File
1028 menu, command line and color preferences.
1030 * Bindings.py: Remove obsolete 'script' menu.
1032 * TODO.txt: Several wishes fulfilled.
1035 Moved classes OnDemandOutputWindow and PseudoFile here,
1036 from ScriptBinding.py where they are no longer needed.
1039 Mostly rewritten. Instead of the old Run module and Debug module,
1040 there are two new commands:
1042 Import module (F5) imports or reloads the module and also adds its
1043 name to the __main__ namespace. This gets executed in the PyShell
1044 window under control of its debug settings.
1046 Run script (Control-F5) is similar but executes the contents of the
1047 file directly in the __main__ namespace.
1049 * PyShell.py: Nits: document use of $IDLESTARTUP; display idle version
1051 * idlever.py: New version to celebrate new command line
1053 * OutputWindow.py: Added flush(), for completeness.
1056 A lot of changes to make the command line more useful. You can now do:
1057 idle.py -e file ... -- to edit files
1058 idle.py script arg ... -- to run a script
1059 idle.py -c cmd arg ... -- to run a command
1060 Other options, see also the usage message (also new!) for more details:
1061 -d -- enable debugger
1062 -s -- run $IDLESTARTUP or $PYTHONSTARTUP
1063 -t title -- set Python Shell window's title
1064 sys.argv is set accordingly, unless -e is used.
1065 sys.path is absolutized, and all relevant paths are inserted into it.
1068 - the environment in which commands are executed is now the
1070 - explicitly save sys.stdout etc., don't restore from sys.__stdout__
1071 - new interpreter methods execsource(), execfile(), stuffsource()
1075 Some more TODO items. Made up my mind about command line args,
1076 Run/Import, __main__.
1078 * ColorDelegator.py:
1079 Super-elegant patch by Tim Peters that speeds up colorization
1080 dramatically (up to 15 times he claims). Works by reading more than
1081 one line at a time, up to 100-line chunks (starting with one line and
1082 then doubling up to the limit). On a typical machine (e.g. Tim's
1083 P5-166) this doesn't reduce interactive responsiveness in a noticeable
1086 Wed Apr 21 15:49:34 1999 Guido van Rossum <guido@cnri.reston.va.us>
1088 * ColorDelegator.py:
1089 Patch by Tim Peters to speed up colorizing of big multiline strings.
1091 Tue Apr 20 17:32:52 1999 Guido van Rossum <guido@cnri.reston.va.us>
1094 For an event 'foo-bar', the corresponding method must be called
1095 foo_bar_event(). Therefore, fix the references to zoom_height() in
1098 * IdlePrefs.py: Restored the original IDLE color scheme.
1100 * PyShell.py, IdlePrefs.py, ColorDelegator.py, EditorWindow.py:
1101 Color preferences code by Loren Luke (massaged by me somewhat)
1104 Patch by Mark Favas: it fixes the search engine behaviour where an
1105 unsuccessful search wraps around and re-searches that part of the file
1106 between the start of the search and the end of the file - only really
1107 an issue for very large files, but... (also removes a redundant
1110 Mon Apr 19 16:26:02 1999 Guido van Rossum <guido@cnri.reston.va.us>
1112 * TODO.txt: A few wishes are now fulfilled.
1114 * AutoIndent.py: Tim Peters implements some of my wishes:
1116 o Makes the tab key intelligently insert spaces when appropriate
1117 (see Help list banter twixt David Ascher and me; idea stolen from
1118 every other editor on earth <wink>).
1120 o newline_and_indent_event trims trailing whitespace on the old
1121 line (pymode and Codewright).
1123 o newline_and_indent_event no longer fooled by trailing whitespace or
1124 comment after ":" (pymode, PTUI).
1126 o newline_and_indent_event now reduces the new line's indentation after
1127 return, break, continue, raise and pass stmts (pymode).
1129 The last two are easy to fool in the presence of strings &
1130 continuations, but pymode requires Emacs's high-powered C parsing
1131 functions to avoid that in finite time.
1133 ======================================================================
1134 Python release 1.5.2c1, IDLE version 0.4
1135 ======================================================================
1137 Wed Apr 7 18:41:59 1999 Guido van Rossum <guido@cnri.reston.va.us>
1139 * README.txt, NEWS.txt: New version.
1141 * idlever.py: Version bump awaiting impending new release.
1142 (Not much has changed :-( )
1144 Mon Mar 29 14:52:28 1999 Guido van Rossum <guido@cnri.reston.va.us>
1146 * ScriptBinding.py, PyShell.py:
1147 At Tim Peters' recommendation, add a dummy flush() method to
1150 Thu Mar 11 23:21:23 1999 Guido van Rossum <guido@cnri.reston.va.us>
1152 * PathBrowser.py: Don't crash when sys.path contains an empty string.
1154 * Attic/Outline.py: This file was never supposed to be part of IDLE.
1157 - Don't crash in the case where a superclass is a string instead of a
1158 pyclbr.Class object; this can happen when the superclass is
1159 unrecognizable (to pyclbr), e.g. when module renaming is used.
1161 - Show a watch cursor when calling pyclbr (since it may take a while
1162 recursively parsing imported modules!).
1164 Wed Mar 10 05:18:02 1999 Guido van Rossum <guido@cnri.reston.va.us>
1166 * EditorWindow.py, Bindings.py: Add PathBrowser to File module
1168 * PathBrowser.py: "Path browser" - 4 scrolled lists displaying:
1169 directories on sys.path
1170 modules in selected directory
1171 classes in selected module
1172 methods of selected class
1174 Sinlge clicking in a directory, module or class item updates the next
1175 column with info about the selected item. Double clicking in a
1176 module, class or method item opens the file (and selects the clicked
1177 item if it is a class or method).
1179 I guess eventually I should be using a tree widget for this, but the
1180 ones I've seen don't work well enough, so for now I use the old
1181 Smalltalk or NeXT style multi-column hierarchical browser.
1183 * MultiScrolledLists.py:
1184 New utility: multiple scrolled lists in parallel
1186 * ScrolledList.py: - White background.
1187 - Display "(None)" (or text of your choosing) when empty.
1188 - Don't set the focus.
1190 ======================================================================
1191 Python release 1.5.2b2, IDLE version 0.3
1192 ======================================================================
1194 Wed Feb 17 22:47:41 1999 Guido van Rossum <guido@cnri.reston.va.us>
1196 * NEWS.txt: News in 0.3.
1198 * README.txt, idlever.py: Bump version to 0.3.
1201 After all, we don't need to call the callbacks ourselves!
1204 When deleting, call the callbacks *after* deleting the window from our list!
1207 Fix up the Windows menu via the new callback mechanism instead of
1208 depending on menu post commands (which don't work when the menu is
1212 Support callbacks to patch up Windows menus everywhere.
1214 * ChangeLog: Oh, why not. Checking in the Emacs-generated change log.
1216 Tue Feb 16 22:34:17 1999 Guido van Rossum <guido@cnri.reston.va.us>
1219 Only pop up the stack viewer when requested in the Debug menu.
1221 Mon Feb 8 22:27:49 1999 Guido van Rossum <guido@cnri.reston.va.us>
1223 * WindowList.py: Don't crash if a window no longer exists.
1225 * TODO.txt: Restructured a bit.
1227 Mon Feb 1 23:06:17 1999 Guido van Rossum <guido@cnri.reston.va.us>
1229 * PyShell.py: Add current dir or paths of file args to sys.path.
1231 * Debugger.py: Add canonic() function -- for brand new bdb.py feature.
1233 * StackViewer.py: Protect against accessing an empty stack.
1235 Fri Jan 29 20:44:45 1999 Guido van Rossum <guido@cnri.reston.va.us>
1238 Use only the height to decide whether to zoom in or out.
1240 Thu Jan 28 22:24:30 1999 Guido van Rossum <guido@cnri.reston.va.us>
1242 * EditorWindow.py, FileList.py:
1243 Make sure the Tcl variables are shared between windows.
1245 * PyShell.py, EditorWindow.py, Bindings.py:
1246 Move menu/key binding code from Bindings.py to EditorWindow.py,
1247 with changed APIs -- it makes much more sense there.
1248 Also add a new feature: if the first character of a menu label is
1249 a '!', it gets a checkbox. Checkboxes are bound to Boolean Tcl variables
1250 that can be accessed through the new getvar/setvar/getrawvar API;
1251 the variable is named after the event to which the menu is bound.
1253 * Debugger.py: Add Quit button to the debugger window.
1256 When find_again() finds exactly the current selection, it's a failure.
1258 * idle.py, Attic/idle: Rename idle -> idle.py
1260 Mon Jan 18 15:18:57 1999 Guido van Rossum <guido@cnri.reston.va.us>
1262 * EditorWindow.py, WindowList.py: Only deiconify when iconic.
1266 Tue Jan 12 22:14:34 1999 Guido van Rossum <guido@cnri.reston.va.us>
1268 * testcode.py, Attic/test.py:
1269 Renamed test.py to testcode.py so one can import Python's
1270 test package from inside IDLE. (Suggested by Jack Jansen.)
1272 * EditorWindow.py, ColorDelegator.py:
1273 Hack to close a window that is colorizing.
1275 * Separator.py: Vladimir Marangozov's patch:
1276 The separator dances too much and seems to jump by arbitrary amounts
1277 in arbitrary directions when I try to move it for resizing the frames.
1278 This patch makes it more quiet.
1280 Mon Jan 11 14:52:40 1999 Guido van Rossum <guido@cnri.reston.va.us>
1282 * TODO.txt: Some requests have been fulfilled.
1285 Set the cursor to a watch when opening the class browser (which may
1286 take quite a while, browsing multiple files).
1288 Newer, better center() -- but assumes no wrapping.
1291 Got rid of debug print statement in goto_line_event().
1294 I think I like it better if it prints the traceback even when it displays
1297 * Debugger.py: Bind ESC to close-window.
1299 * ClassBrowser.py: Use a HSeparator between the classes and the items.
1300 Make the list of classes wider by default (40 chars).
1301 Bind ESC to close-window.
1304 Separator classes (draggable divider between two panes).
1306 Sat Jan 9 22:01:33 1999 Guido van Rossum <guido@cnri.reston.va.us>
1309 Don't traceback when wakeup() is called when the window has been destroyed.
1310 This can happen when a torn-of Windows menu references closed windows.
1311 And Tim Peters claims that the Windows menu is his favorite to tear off...
1313 * EditorWindow.py: Allow tearing off of the Windows menu.
1315 * StackViewer.py: Close on ESC.
1317 * help.txt: Updated a bunch of things (it was mostly still 0.1!)
1319 * extend.py: Added ScriptBinding to standard bindings.
1322 This now actually works. See doc string. It can run a module (i.e.
1323 import or reload) or debug it (same with debugger control). Output
1324 goes to a fresh output window, only created when needed.
1326 ======================================================================
1327 Python release 1.5.2b1, IDLE version 0.2
1328 ======================================================================
1330 Fri Jan 8 17:26:02 1999 Guido van Rossum <guido@cnri.reston.va.us>
1332 * README.txt, NEWS.txt: What's new in this release.
1334 * Bindings.py, PyShell.py:
1335 Paul Prescod's patches to allow the stack viewer to pop up when a
1336 traceback is printed.
1338 Thu Jan 7 00:12:15 1999 Guido van Rossum <guido@cnri.reston.va.us>
1340 * FormatParagraph.py:
1341 Change paragraph width limit to 70 (like Emacs M-Q).
1344 Separating TODO from README. Slight reformulation of features. No
1347 * TODO.txt: Separating TODO from README.
1349 Mon Jan 4 21:19:09 1999 Guido van Rossum <guido@cnri.reston.va.us>
1351 * FormatParagraph.py:
1352 Hm. There was a boundary condition error at the end of the file too.
1354 * SearchBinding.py: Hm. Add Unix binding for replace, too.
1356 * keydefs.py: Ran eventparse.py again.
1358 * FormatParagraph.py: Added Unix Meta-q key binding;
1359 fix find_paragraph when at start of file.
1361 * AutoExpand.py: Added Meta-/ binding for Unix as alt for Alt-/.
1364 Add unix binding for grep (otherwise the menu entry doesn't work!)
1366 * ZoomHeight.py: Adjusted Unix height to work with fvwm96. :=(
1368 * GrepDialog.py: Need to import sys!
1370 * help.txt, extend.txt, README.txt: Formatted some paragraphs
1372 * extend.py, FormatParagraph.py:
1373 Add new extension to reformat a (text) paragraph.
1375 * ZoomHeight.py: Typo in Win specific height setting.
1377 Sun Jan 3 00:47:35 1999 Guido van Rossum <guido@cnri.reston.va.us>
1379 * AutoIndent.py: Added something like Tim Peters' backspace patch.
1381 * ZoomHeight.py: Adapted to Unix (i.e., more hardcoded constants).
1383 Sat Jan 2 21:28:54 1999 Guido van Rossum <guido@cnri.reston.va.us>
1385 * keydefs.py, idlever.py, idle.pyw, idle.bat, help.txt, extend.txt, extend.py, eventparse.py, ZoomHeight.py, WindowList.py, UndoDelegator.py, StackViewer.py, SearchEngine.py, SearchDialogBase.py, SearchDialog.py, ScrolledList.py, SearchBinding.py, ScriptBinding.py, ReplaceDialog.py, Attic/README, README.txt, PyShell.py, Attic/PopupMenu.py, OutputWindow.py, IOBinding.py, Attic/HelpWindow.py, History.py, GrepDialog.py, FileList.py, FrameViewer.py, EditorWindow.py, Debugger.py, Delegator.py, ColorDelegator.py, Bindings.py, ClassBrowser.py, AutoExpand.py, AutoIndent.py:
1386 Checking in IDLE 0.2.
1388 Much has changed -- too much, in fact, to write down.
1389 The big news is that there's a standard way to write IDLE extensions;
1390 see extend.txt. Some sample extensions have been provided, and
1391 some existing code has been converted to extensions. Probably the
1392 biggest new user feature is a new search dialog with more options,
1393 search and replace, and even search in files (grep).
1395 This is exactly as downloaded from my laptop after returning
1396 from the holidays -- it hasn't even been tested on Unix yet.
1398 Fri Dec 18 15:52:54 1998 Guido van Rossum <guido@cnri.reston.va.us>
1400 * FileList.py, ClassBrowser.py:
1401 Fix the class browser to work even when the file is not on sys.path.
1403 Tue Dec 8 20:39:36 1998 Guido van Rossum <guido@cnri.reston.va.us>
1405 * Attic/turtle.py: Moved to Python 1.5.2/Lib
1407 Fri Nov 27 03:19:20 1998 Guido van Rossum <guido@cnri.reston.va.us>
1411 * EditorWindow.py, FileList.py: Support underlining of menu labels
1414 New approach, separate tables for menus (platform-independent) and key
1415 definitions (platform-specific), and generating accelerator strings
1416 automatically from the key definitions.
1418 Mon Nov 16 18:37:42 1998 Guido van Rossum <guido@cnri.reston.va.us>
1420 * Attic/README: Clarify portability and main program.
1422 * Attic/README: Added intro for 0.1 release and append Grail notes.
1424 Mon Oct 26 18:49:00 1998 Guido van Rossum <guido@cnri.reston.va.us>
1426 * Attic/turtle.py: root is now a global called _root
1428 Sat Oct 24 16:38:38 1998 Guido van Rossum <guido@cnri.reston.va.us>
1430 * Attic/turtle.py: Raise the root window on reset().
1431 Different action on WM_DELETE_WINDOW is more likely to do the right thing,
1432 allowing us to destroy old windows.
1435 Split the goto() function in two: _goto() is the internal one,
1436 using Canvas coordinates, and goto() uses turtle coordinates
1437 and accepts variable argument lists.
1439 * Attic/turtle.py: Cope with destruction of the window
1441 * Attic/turtle.py: Turtle graphics
1443 * Debugger.py: Use of Breakpoint class should be bdb.Breakpoint.
1445 Mon Oct 19 03:33:40 1998 Guido van Rossum <guido@cnri.reston.va.us>
1448 Speed up the search a bit -- don't drag a mark around...
1451 Change our special entries from <console#N> to <pyshell#N>.
1452 Patch linecache.checkcache() to keep our special entries alive.
1453 Add popup menu to all editor windows to set a breakpoint.
1456 Use and pass through the 'force' flag to set_dict() where appropriate.
1457 Default source and globals checkboxes to false.
1458 Don't interact in user_return().
1459 Add primitive set_breakpoint() method.
1461 * ColorDelegator.py:
1462 Raise priority of 'sel' tag so its foreground (on Windows) will take
1463 priority over text colorization (which on Windows is almost the
1464 same color as the selection background).
1466 Define a tag and color for breakpoints ("BREAK").
1468 * Attic/PopupMenu.py: Disable "Open stack viewer" and "help" commands.
1471 Add optional 'force' argument (default 0) to load_dict().
1472 If set, redo the display even if it's the same dict.
1474 Fri Oct 16 21:10:12 1998 Guido van Rossum <guido@cnri.reston.va.us>
1476 * StackViewer.py: Do nothing when loading the same dict as before.
1478 * PyShell.py: Details for debugger interface.
1481 Restructured and more consistent. Save checkboxes across instantiations.
1483 * EditorWindow.py, Attic/README, Bindings.py:
1484 Get rid of conflicting ^X binding. Use ^W.
1486 * Debugger.py, StackViewer.py:
1487 Debugger can now show local and global variables.
1491 * Debugger.py, PyShell.py: Better debugger support (show stack etc).
1493 * Attic/PopupMenu.py: Follow renames in StackViewer module
1496 Rename classes to StackViewer (the widget) and StackBrowser (the toplevel).
1498 * ScrolledList.py: Add close() method
1500 * EditorWindow.py: Clarify 'Open Module' dialog text
1502 * StackViewer.py: Restructured into a browser and a widget.
1504 Thu Oct 15 23:27:08 1998 Guido van Rossum <guido@cnri.reston.va.us>
1506 * ClassBrowser.py, ScrolledList.py:
1507 Generalized the scrolled list which is the base for the class and
1508 method browser into a separate class in its own module.
1510 * Attic/test.py: Cosmetic change
1512 * Debugger.py: Don't show function name if there is none
1514 Wed Oct 14 03:43:05 1998 Guido van Rossum <guido@cnri.reston.va.us>
1516 * Debugger.py, PyShell.py: Polish the Debugger GUI a bit.
1517 Closing it now also does the right thing.
1519 Tue Oct 13 23:51:13 1998 Guido van Rossum <guido@cnri.reston.va.us>
1521 * Debugger.py, PyShell.py, Bindings.py:
1522 Ad primitive debugger interface (so far it will step and show you the
1523 source, but it doesn't yet show the stack).
1525 * Attic/README: Misc
1527 * StackViewer.py: Whoops -- referenced self.top before it was set.
1529 * help.txt: Added history and completion commands.
1533 * FileList.py: Add class browser functionality.
1536 Add a close() method and bind to WM_DELETE_WINDOW protocol
1538 * PyShell.py: Clear the linecache before printing a traceback
1540 * Bindings.py: Added class browser binding.
1542 * ClassBrowser.py: Much improved, much left to do.
1544 * PyShell.py: Make the return key do what I mean more often.
1547 Adding the beginnings of a Class browser. Incomplete, yet.
1549 * EditorWindow.py, Bindings.py:
1550 Add new command, "Open module". You select or type a module name,
1551 and it opens the source.
1553 Mon Oct 12 23:59:27 1998 Guido van Rossum <guido@cnri.reston.va.us>
1555 * PyShell.py: Subsume functionality from Popup menu in Debug menu.
1556 Other stuff so the PyShell window can be resurrected from the Windows menu.
1558 * FileList.py: Get rid of PopUp menu.
1559 Create a simple Windows menu. (Imperfect when Untitled windows exist.)
1560 Add wakeup() method: deiconify, raise, focus.
1562 * EditorWindow.py: Generalize menu creation.
1564 * Bindings.py: Add Debug and Help menu items.
1566 * EditorWindow.py: Added a menu bar to every window.
1568 * Bindings.py: Add menu configuration to the event configuration.
1570 * Attic/PopupMenu.py: Pass a root to the help window.
1573 Add parent argument to 'to to line number' dialog box.
1575 Sat Oct 10 19:15:32 1998 Guido van Rossum <guido@cnri.reston.va.us>
1578 Add a label at the top showing (very basic) help for the stack viewer.
1579 Add a label at the bottom showing the exception info.
1581 * Attic/test.py, Attic/idle: Add Unix main script and test program.
1583 * idle.pyw, help.txt, WidgetRedirector.py, UndoDelegator.py, StackViewer.py, SearchBinding.py, Attic/README, PyShell.py, Attic/PopupMenu.py, Percolator.py, Outline.py, IOBinding.py, History.py, Attic/HelpWindow.py, FrameViewer.py, FileList.py, EditorWindow.py, Delegator.py, ColorDelegator.py, Bindings.py, AutoIndent.py, AutoExpand.py:
1584 Initial checking of Tk-based Python IDE.
1585 Features: text editor with syntax coloring and undo;
1586 subclassed into interactive Python shell which adds history.