diff options
author | Guido van Rossum <guido@python.org> | 1999-01-08 17:26:02 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-08 17:26:02 (GMT) |
commit | b33f612f3323f26cad6b43211d8e59e7e84f3604 (patch) | |
tree | 128f1f62776cb3fc21a6eba4a6124bba50f26dca /Tools/idle | |
parent | 2c1f6be38eee454038837769ef7d9b72011430ef (diff) | |
download | cpython-b33f612f3323f26cad6b43211d8e59e7e84f3604.zip cpython-b33f612f3323f26cad6b43211d8e59e7e84f3604.tar.gz cpython-b33f612f3323f26cad6b43211d8e59e7e84f3604.tar.bz2 |
What's new in this release.
Diffstat (limited to 'Tools/idle')
-rw-r--r-- | Tools/idle/NEWS.txt | 47 | ||||
-rw-r--r-- | Tools/idle/README.txt | 6 |
2 files changed, 51 insertions, 2 deletions
diff --git a/Tools/idle/NEWS.txt b/Tools/idle/NEWS.txt new file mode 100644 index 0000000..c8cd63c --- /dev/null +++ b/Tools/idle/NEWS.txt @@ -0,0 +1,47 @@ +---------------------------------------------------------------------- + +New in IDLE 0.2 (1/8/99) +------------------------ + +Lots of changes; here are the highlights: + +General: + +- You can now write and configure your own IDLE extension modules; see +extend.txt. + + +File menu: + +The command to open the Python shell window is now in the File menu. + + +Edit menu: + +New Find dialog with more options; replace dialog; find in files dialog. + +Commands to tabify or untabify a region. + +Command to format a paragraph. + + +Debug menu: + +JIT (Just-In-Time) stack viewer toggle -- if set, the stack viewer +automaticall pops up when you get a traceback. + +Windows menu: + +Zoom height -- make the window full height. + + +Help menu: + +The help text now show up in a regular window so you can search and +even edit it if you like. + +---------------------------------------------------------------------- + +IDLE 0.1 was distributed with the Python 1.5.2b1 release on 12/22/98. + +====================================================================== diff --git a/Tools/idle/README.txt b/Tools/idle/README.txt index 0279ed9..7c59eaa 100644 --- a/Tools/idle/README.txt +++ b/Tools/idle/README.txt @@ -1,5 +1,7 @@ -IDLE 0.2 - January 1999 ------------------------ +IDLE 0.2 - 8 January 1999 +------------------------- + +For news about this release, see the file NEWS.txt. This is an early release of IDLE, my own attempt at a Tkinter-based IDE for Python. It has the following features: |