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

Skip to content

Commit 7e17289

Browse files
committed
Update for release.
Modified Files: INSTALL.txt NEWS.txt idlever.py
1 parent e66675b commit 7e17289

3 files changed

Lines changed: 39 additions & 13 deletions

File tree

Lib/idlelib/INSTALL.txt

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,22 @@ IDLEfork-0.9xx-1.noarch.rpm
1818
python2 and python2-tkinter rpms. It installs as idlefork to avoid
1919
conflict with Python IDLE.
2020

21+
The Python2 rpm is designed to work with Redhat systems prior to Rev 8.
22+
It is available at http://www.python.org/2.2.2/rpms.html and
23+
http://www.python.org/2.2.1/rpms.html . See the warning/explanation
24+
on the latter web page, which discusses the reason for python2.
25+
2126
IDLEfork-0.9xx.tar.gz
2227
This is a distutils sdist (source) tarfile which can be used to make
2328
installations on platforms not supported by the above files.
24-
It remains configured to install as IDLE, not IDLEfork.
29+
** It remains configured to install as idlelib, not idleforklib. **
2530

2631
Unpack in ..../Tools/, cd to the IDLEfork directory created, and
27-
<python setup.py install> to install in ....site-packages/idlelib.
32+
<python setup.py install> to install in ....site-packages/idlelib.
33+
This will overwrite the Python IDLE installation.
2834

2935
If you don't want to overwrite Python IDLE, it is also possible to
30-
simply run <python idle.py> to test in the IDLEfork source directory
36+
simply call <python idle.py> to run from the IDLEfork source directory
3137
without making an installation. In this case, IDLE will not be on
3238
your PATH unless you are in the source directory. Also, it is then
3339
advisable to remove any Python IDLE installation by removing

Lib/idlelib/NEWS.txt

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,26 @@ IDLEfork NEWS
55
What's New in IDLEfork 0.9 Alpha 2?
66
===================================
77

8-
*Release date: XX-XXX-2003*
8+
*Release date: 27-Jan-2003*
9+
10+
- Updated INSTALL.txt to claify use of the python2 rpm.
11+
12+
- Improved formatting in IDLE Help.
13+
14+
- Run menu: Replace "Run Script" with "Run Module".
15+
16+
- Code encountering an unhandled exception under the debugger now shows
17+
the correct traceback, with IDLE internal levels pruned out.
18+
19+
- If an exception occurs entirely in IDLE, don't prune the IDLE internal
20+
modules from the traceback displayed.
21+
22+
- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
23+
24+
- IDLE icons will now install correctly even when setup.py is run from the
25+
build directory
26+
27+
- Class Browser now compatible with Python2.3 version of pyclbr.py
928

1029
- Left cursor move in presence of selected text now moves from left end
1130
of the selection.
@@ -68,14 +87,14 @@ What's New in IDLEfork 0.9 Alpha 2?
6887
- Rearrange the Shell menu to put Stack Viewer entries adjacent.
6988

7089
- Add the ability to restart the subprocess interpreter from the shell window;
71-
add an associated menu entry "Shell/Restart". Update help.
90+
add an associated menu entry "Shell/Restart" with binding Control-F6. Update
91+
IDLE help.
7292

7393
- Upon a restart, annotate the shell window with a "restart boundary". Add a
74-
shell window menu "Shell/View Restart" and hotkey to jump to the most recent
75-
restart boundary.
94+
shell window menu "Shell/View Restart" with binding F6 to jump to the most
95+
recent restart boundary.
7696

77-
- Change the shell window menu "Debug" to "Shell"; change "Settings" to
78-
"Options".
97+
- Add Shell menu to Python Shell; change "Settings" to "Options".
7998

8099
- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
81100

@@ -90,9 +109,10 @@ What's New in IDLEfork 0.9 Alpha 2?
90109

91110
+ Can't kill a tight loop in the Windows version: Insert a
92111
``print "*",`` in an outer loop or use the Task Manager to kill.
93-
+ Printing under Linux may be problematic.
94-
+ The debugger is pretty slow.
95-
+ RPC stack levels are not being pruned from debugger tracebacks.
112+
+ Typing two Control-C in close succession when the subprocess is busy can
113+
cause IDLE to lose communication with the subprocess. Please type one
114+
only and wait for the exception to complete.
115+
+ Printing under some versions of Linux may be problematic.
96116

97117

98118
What's New in IDLEfork 0.9 Alpha 1?

Lib/idlelib/idlever.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
IDLE_VERSION = "0.9a1"
1+
IDLE_VERSION = "0.9a2"

0 commit comments

Comments
 (0)