summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/EditorWindow.py
diff options
context:
space:
mode:
authorSteven M. Gava <elguavas@python.net>2001-07-19 04:49:13 (GMT)
committerSteven M. Gava <elguavas@python.net>2001-07-19 04:49:13 (GMT)
commit4d712a4d6712887e53d5f89943c7bbef5eb9492e (patch)
tree86c0ac4e7695b13e17b63fa6d1d9ef55ae733b95 /Lib/idlelib/EditorWindow.py
parent53d285a9af2c7bfc5534241e011bca232bdfa25e (diff)
downloadcpython-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/EditorWindow.py')
-rw-r--r--Lib/idlelib/EditorWindow.py22
1 files changed, 15 insertions, 7 deletions
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: