diff options
author | Steven M. Gava <elguavas@python.net> | 2001-07-19 04:49:13 (GMT) |
---|---|---|
committer | Steven M. Gava <elguavas@python.net> | 2001-07-19 04:49:13 (GMT) |
commit | 4d712a4d6712887e53d5f89943c7bbef5eb9492e (patch) | |
tree | 86c0ac4e7695b13e17b63fa6d1d9ef55ae733b95 /Lib/idlelib | |
parent | 53d285a9af2c7bfc5534241e011bca232bdfa25e (diff) | |
download | cpython-4d712a4d6712887e53d5f89943c7bbef5eb9492e.zip cpython-4d712a4d6712887e53d5f89943c7bbef5eb9492e.tar.gz cpython-4d712a4d6712887e53d5f89943c7bbef5eb9492e.tar.bz2 |
minor tidy-ups ready for 0.8.1 alpha tarball release
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/ChangeLog | 3 | ||||
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 22 | ||||
-rw-r--r-- | Lib/idlelib/INSTALLATION | 5 | ||||
-rw-r--r-- | Lib/idlelib/NEWS.txt | 3 | ||||
-rw-r--r-- | Lib/idlelib/README.txt | 3 | ||||
-rw-r--r-- | Lib/idlelib/TODO.txt | 3 | ||||
-rw-r--r-- | Lib/idlelib/idlever.py | 1 |
7 files changed, 31 insertions, 9 deletions
diff --git a/Lib/idlelib/ChangeLog b/Lib/idlelib/ChangeLog index b853a34..e60e2f3 100644 --- a/Lib/idlelib/ChangeLog +++ b/Lib/idlelib/ChangeLog @@ -1,3 +1,6 @@ +original IDLE ChangeLog: +======================== + Tue Feb 15 18:08:19 2000 Guido van Rossum <guido@cnri.reston.va.us> * NEWS.txt: Notice status bar and stack viewer. diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 3ab452e..3f3f95b 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -78,17 +78,25 @@ TK_TABWIDTH_DEFAULT = 8 #$ unix <Control-x> -about_title = "About IDLE" +about_title = "About IDLEfork" about_text = """\ -IDLE %s +IDLEfork %s -An Integrated DeveLopment Environment for Python +IDLE is an Integrated DeveLopment Environment for Python \ +by Guido van Rossum. -by Guido van Rossum +IDLEfork is an official experimental development version of IDLE. +Succesful new features in IDLEfork will be mereged back in to stable IDLE. -This version of IDLE has been modified by David Scherer - (dscherer@cmu.edu). See readme.txt for details. -""" % idlever.IDLE_VERSION +This version of IDLEfork is based on the work in stable IDLE version %s, \ +IDLEfork 0.7.1 released by David Scherer, and the VPython idle fork. + +See README.txt for more details on IDLEfork. + +WARNING: IDLEfork is at this stage alpha quality software, expect things \ +to be broken. + +""" % (idlever.IDLEFORK_VERSION, idlever.IDLE_VERSION) class EditorWindow: diff --git a/Lib/idlelib/INSTALLATION b/Lib/idlelib/INSTALLATION index 369395f..c5ee4be 100644 --- a/Lib/idlelib/INSTALLATION +++ b/Lib/idlelib/INSTALLATION @@ -1,3 +1,6 @@ +INSTALLATION from IDLE fork 0.7.1 : +=================================== + IDLE Fork Installation on Linux: Until the tarball is released, you must download a CVS copy. An excellent @@ -35,4 +38,4 @@ itself). # exit from root NOTE that the above procedure will install idlefork IDLE on top of any -"official" IDLE that may be already installed.
\ No newline at end of file +"official" IDLE that may be already installed. diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 86cbc76..5e6e37a 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,3 +1,6 @@ +original IDLE NEWS.txt : +======================== + (For a more detailed change log, see the file ChangeLog.) ---------------------------------------------------------------------- diff --git a/Lib/idlelib/README.txt b/Lib/idlelib/README.txt index 1b065ae..00fedf0 100644 --- a/Lib/idlelib/README.txt +++ b/Lib/idlelib/README.txt @@ -1,3 +1,6 @@ +README from IDLE fork 0.7.1 : +============================= + EXPERIMENTAL LOADER IDLE 2000-05-29 ----------------------------------- diff --git a/Lib/idlelib/TODO.txt b/Lib/idlelib/TODO.txt index b5ec7e8..96b0450 100644 --- a/Lib/idlelib/TODO.txt +++ b/Lib/idlelib/TODO.txt @@ -1,4 +1,5 @@ - +Original IDLE todo, much of it now outdated: +============================================ TO DO: - improve debugger: diff --git a/Lib/idlelib/idlever.py b/Lib/idlelib/idlever.py index 82c5781..077e347 100644 --- a/Lib/idlelib/idlever.py +++ b/Lib/idlelib/idlever.py @@ -1 +1,2 @@ IDLE_VERSION = "0.8" +IDLEFORK_VERSION = "0.8.1" |