1
- This is Python version 2.0
2
- ==========================
1
+ This is Python version 2.0.1, a bugfix release for Python 2.0
2
+ =============================================================
3
+
4
+ Copyright (c) 2001 Python Software Foundation.
5
+ All rights reserved.
3
6
4
7
Copyright (c) 2000 BeOpen.com.
5
8
All rights reserved.
6
9
7
- Copyright (c) 1995-2000 Corporation for National Research Initiatives.
10
+ Copyright (c) 1995-2001 Corporation for National Research Initiatives.
8
11
All rights reserved.
9
12
10
13
Copyright (c) 1991-1995 Stichting Mathematisch Centrum.
@@ -30,8 +33,7 @@ holders.
30
33
What's new in this release?
31
34
---------------------------
32
35
33
- See the file "Misc/NEWS"; see also this URL:
34
- http://www.pythonlabs.com/products/python2.0/
36
+ See the file "Misc/NEWS".
35
37
36
38
If you don't read instructions
37
39
------------------------------
@@ -52,14 +54,7 @@ Python is an interpreted object-oriented programming language suitable
52
54
scripting, numeric computing and system testing. Python is often
53
55
compared to Tcl, Perl, Java, JavaScript, Visual Basic or Scheme. To
54
56
find out more about what Python can do for you, point your browser to
55
- http://www.pythonlabs.com/.
56
-
57
- BeOpen.com offers corporate support, custom development and
58
- sponsorships for Python. Contact <sales@beopen.com> for more
59
- information.
60
-
61
- BeOpen Python releases include pre-built Python executables for major
62
- platforms and are available from PythonLabs.
57
+ http://www.python.org/.
63
58
64
59
65
60
How do I learn Python?
@@ -95,14 +90,9 @@ Web sites
95
90
---------
96
91
97
92
New Python releases and related technologies are published at
98
- http://www.pythonlabs.com /. Come visit us!
93
+ http://www.python.org /. Come visit us!
99
94
100
- The present Python community web site is http://www.python.org/.
101
- BeOpen.com is developing a next-generation community site for Python
102
- and is looking for volunteers to help make this an even better
103
- resource than the existing community site. If you know Python well
104
- and would like to volunteer to work with us on this project, please
105
- contact <volunteer@pythonlabs.com> with a summary of your skills.
95
+ There's also a Python community web site at http://starship.python.net/.
106
96
107
97
108
98
Newsgroups and Mailing Lists
@@ -144,9 +134,9 @@ Questions
144
134
For help, if you can't find it in the manuals or on the web site, it's
145
135
best to post to the comp.lang.python or the Python mailing list (see
146
136
above). If you specifically don't want to involve the newsgroup or
147
- mailing list, send questions to < help@python.org> (a group of
148
- volunteers who answer questions as they can). The newsgroup is the
149
- most efficient way to ask public questions.
137
+ mailing list, send questions to help@python.org (a group of volunteers
138
+ who answer questions as they can). The newsgroup is the most
139
+ efficient way to ask public questions.
150
140
151
141
152
142
Build instructions
@@ -227,8 +217,9 @@ Platform specific notes
227
217
-----------------------
228
218
229
219
(Some of these may no longer apply. If you find you can build Python
230
- on these platforms without the special directions mentioned here, mail
231
- to <python@pythonlabs.com> so we can remove them!)
220
+ on these platforms without the special directions mentioned here,
221
+ submit a documentation bug report to SourceForge (see Bug Reports
222
+ above) so we can remove them!)
232
223
233
224
64-bit platforms: The modules audioop, imageop and rgbimg don't work.
234
225
Don't try to enable them in the Modules/Setup file. They
@@ -546,19 +537,21 @@ directory given by --exec-prefix or the `exec_prefix' Make variable
546
537
547
538
All subdirectories created will have Python's version number in their
548
539
name, e.g. the library modules are installed in
549
- "/usr/local/lib/python2.0/" by default. The Python binary is
550
- installed as "python2.0" and a hard link named "python" is created.
551
- The only file not installed with a version number in its name is the
552
- manual page, installed as "/usr/local/man/man1/python.1" by default.
540
+ "/usr/local/lib/python<version>/" by default, where <version> is the
541
+ <major>.<minor> release number (i.e. "2.0", even though this is Python
542
+ 2.0.1). The Python binary is installed as "python<version>" and a
543
+ hard link named "python" is created. The only file not installed with
544
+ a version number in its name is the manual page, installed as
545
+ "/usr/local/man/man1/python.1" by default.
553
546
554
547
If you have a previous installation of a pre-2.0 Python that you don't
555
548
want to replace yet, use
556
549
557
550
make altinstall
558
551
559
552
This installs the same set of files as "make install" except it
560
- doesn't create the hard link to "python2.0 " named "python" and it
561
- doesn't install the manual page at all.
553
+ doesn't create the hard link to "python<version> " named "python" and
554
+ it doesn't install the manual page at all.
562
555
563
556
The only thing you may have to install manually is the Python mode for
564
557
Emacs found in Misc/python-mode.el. (But then again, more recent
@@ -712,7 +705,7 @@ development, join the PythonMac Special Interest Group
712
705
pythonmac-sig-request@python.org).
713
706
714
707
Of course, there are also binary distributions available for these
715
- platforms -- see http://www.pythonlabs.com/products/python2.0 /.
708
+ platforms -- see http://www.python.org /.
716
709
717
710
To port Python to a new non-UNIX system, you will have to fake the
718
711
effect of running the configure script manually (for Mac and PC, this
@@ -734,11 +727,11 @@ Emacs mode
734
727
There's an excellent Emacs editing mode for Python code; see the file
735
728
Misc/python-mode.el. Originally written by the famous Tim Peters, it
736
729
is now maintained by the equally famous Barry Warsaw (it's no
737
- coincidence that they now both work at PythonLabs ). The latest
730
+ coincidence that they now both work on the same team ). The latest
738
731
version, along with various other contributed Python-related Emacs
739
- goodies, is online at < http://www.python.org/emacs/python-mode> . And
732
+ goodies, is online at http://www.python.org/emacs/python-mode. And
740
733
if you are planning to edit the Python C code, please pick up the
741
- latest version of CC Mode < http://www.python.org/emacs/cc-mode> ; it
734
+ latest version of CC Mode http://www.python.org/emacs/cc-mode; it
742
735
contains a "python" style used throughout most of the Python C source
743
736
files. (Newer versions of Emacs or XEmacs may already come with the
744
737
latest version of python-mode.)
@@ -826,7 +819,7 @@ config.h Configuration header
826
819
config.log Log from last configure run
827
820
config.status Status from last run of the configure script
828
821
getbuildinfo.o Object file from Modules/getbuildinfo.c
829
- libpython2.0 .a The library archive
822
+ libpython<version> .a The library archive
830
823
python The executable interpreter
831
824
tags, TAGS Tags files for vi and Emacs
832
825
@@ -835,4 +828,4 @@ That's all, folks!
835
828
------------------
836
829
837
830
838
- --Guido van Rossum (home page: http://www.pythonlabs.com /~guido/)
831
+ --Guido van Rossum (home page: http://www.python.org /~guido/)
0 commit comments