summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2003-01-02 20:33:26 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2003-01-02 20:33:26 (GMT)
commitfe8496ca03e93b74fe007de50f0e05347a772a60 (patch)
treea103a1bc952c5239d184b23198463ae23a61512c /Lib/idlelib
parent710fb1548ab43bcddc105c41b139b6328962de01 (diff)
downloadcpython-fe8496ca03e93b74fe007de50f0e05347a772a60.zip
cpython-fe8496ca03e93b74fe007de50f0e05347a772a60.tar.gz
cpython-fe8496ca03e93b74fe007de50f0e05347a772a60.tar.bz2
1. Remove obsolete, incorrect comment on non-package installation
2. Add more .txt files to installation 3. Fix the reference to Visual Python, s/b VPython
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/setup.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/Lib/idlelib/setup.py b/Lib/idlelib/setup.py
index e10b3e8..060f8ff 100644
--- a/Lib/idlelib/setup.py
+++ b/Lib/idlelib/setup.py
@@ -6,10 +6,6 @@ import idlever
idle_name = "idle"
-# IDLE not being imported as a package by its script. It is now being
-# installed as a collection of modules in a directory in .../site-packages/,
-# with a .pth file which will add IDLE to sys.path
-
# Name of 'package' to be installed in site-packages:
pkgname = idle_name + "lib"
@@ -28,8 +24,8 @@ else:
raise SystemExit
# the normal build_py would not incorporate anything but .py files
-txt_files = ['extend.txt', 'help.txt', 'CREDITS.txt', 'LICENSE.txt',
- 'README.txt']
+txt_files = ['extend.txt', 'help.txt', 'CREDITS.txt', 'HISTORY.txt',
+ 'INSTALL.txt', 'LICENSE.txt', 'NEWS.txt', 'README.txt']
txt_files += ['config-extensions.def', 'config-highlight.def',
'config-keys.def', 'config-main.def']
txt_files += [idle_name + '.bat', idle_name + '.pyw']
@@ -101,7 +97,7 @@ text editor with multiple undo, Python colorizing, and many other
things, as well as a Python shell window and a debugger.
IDLEfork is a separate line of development which was initiated by
-D. Scherer at CMU as part of Visual Python. It features execution in a
+David Scherer at CMU as part of VPython. It features execution in a
separate process which is newly initiated for each run. At version 0.9
the RPC was changed to incorporate code by GvR, which supports the
debugger. IDLEfork also incorporates a GUI configuration utilility.