Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4d712a4

Browse files
author
Steven M. Gava
committed
minor tidy-ups ready for 0.8.1 alpha tarball release
1 parent 53d285a commit 4d712a4

7 files changed

Lines changed: 31 additions & 9 deletions

File tree

Lib/idlelib/ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
original IDLE ChangeLog:
2+
========================
3+
14
Tue Feb 15 18:08:19 2000 Guido van Rossum <[email protected]>
25

36
* NEWS.txt: Notice status bar and stack viewer.

Lib/idlelib/EditorWindow.py

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,25 @@
7878
#$ unix <Control-x>
7979

8080

81-
about_title = "About IDLE"
81+
about_title = "About IDLEfork"
8282
about_text = """\
83-
IDLE %s
83+
IDLEfork %s
8484
85-
An Integrated DeveLopment Environment for Python
85+
IDLE is an Integrated DeveLopment Environment for Python \
86+
by Guido van Rossum.
8687
87-
by Guido van Rossum
88+
IDLEfork is an official experimental development version of IDLE.
89+
Succesful new features in IDLEfork will be mereged back in to stable IDLE.
8890
89-
This version of IDLE has been modified by David Scherer
90-
([email protected]). See readme.txt for details.
91-
""" % idlever.IDLE_VERSION
91+
This version of IDLEfork is based on the work in stable IDLE version %s, \
92+
IDLEfork 0.7.1 released by David Scherer, and the VPython idle fork.
93+
94+
See README.txt for more details on IDLEfork.
95+
96+
WARNING: IDLEfork is at this stage alpha quality software, expect things \
97+
to be broken.
98+
99+
""" % (idlever.IDLEFORK_VERSION, idlever.IDLE_VERSION)
92100

93101
class EditorWindow:
94102

Lib/idlelib/INSTALLATION

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
INSTALLATION from IDLE fork 0.7.1 :
2+
===================================
3+
14
IDLE Fork Installation on Linux:
25

36
Until the tarball is released, you must download a CVS copy. An excellent
@@ -35,4 +38,4 @@ itself).
3538
# exit from root
3639

3740
NOTE that the above procedure will install idlefork IDLE on top of any
38-
"official" IDLE that may be already installed.
41+
"official" IDLE that may be already installed.

Lib/idlelib/NEWS.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
original IDLE NEWS.txt :
2+
========================
3+
14
(For a more detailed change log, see the file ChangeLog.)
25

36
----------------------------------------------------------------------

Lib/idlelib/README.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
README from IDLE fork 0.7.1 :
2+
=============================
3+
14
EXPERIMENTAL LOADER IDLE 2000-05-29
25
-----------------------------------
36

Lib/idlelib/TODO.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
1+
Original IDLE todo, much of it now outdated:
2+
============================================
23
TO DO:
34

45
- improve debugger:

Lib/idlelib/idlever.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
IDLE_VERSION = "0.8"
2+
IDLEFORK_VERSION = "0.8.1"

0 commit comments

Comments
 (0)