Commit 8d90f9d5 authored by Guido van Rossum's avatar Guido van Rossum

Minor edits for 1.5a2

parent 93cfa95b
This is Python release 1.5 alpha 1 This is Python release 1.5 alpha 2
================================== ==================================
****************************************** ******************************************
...@@ -24,7 +24,7 @@ What is Python anyway? ...@@ -24,7 +24,7 @@ What is Python anyway?
---------------------- ----------------------
Python is an interpreted object-oriented programming language, and is Python is an interpreted object-oriented programming language, and is
often compared to Tcl, Perl, Scheme or Java. For a quick summary of often compared to Tcl, Perl, Java or Scheme. For a quick summary of
what Python can mean for a UNIX/C programmer, read Misc/BLURB.LUTZ. what Python can mean for a UNIX/C programmer, read Misc/BLURB.LUTZ.
If you have web access, point your browser to http://www.python.org. If you have web access, point your browser to http://www.python.org.
...@@ -37,11 +37,11 @@ directory as tut.tex; and http://www.python.org/doc/tut/tut.html). ...@@ -37,11 +37,11 @@ directory as tut.tex; and http://www.python.org/doc/tut/tut.html).
Aaron Watters wrote a second tutorial, that may be more accessible for Aaron Watters wrote a second tutorial, that may be more accessible for
some: http://www.wcmh.com/uworld/archives/95/tutorial/005.html. some: http://www.wcmh.com/uworld/archives/95/tutorial/005.html.
There are now also two books on Python. While these are still based There are now also several books on Python. While these are still
on Python 1.3 or 1.4, the language is so stable now that you'd be based on Python 1.3 or 1.4, the language is so stable now that you'd
hard pressed to find places where the books are out of date. The be hard pressed to find places where the books are out of date. The
books, both first published in October 1996 and both including a first two books, both first published in October 1996 and both
CD-ROM, form excellent companions to each other: including a CD-ROM, form excellent companions to each other:
Internet Programming with Python Internet Programming with Python
by Aaron Watters, Guido van Rossum, and James Ahlstrom by Aaron Watters, Guido van Rossum, and James Ahlstrom
...@@ -53,6 +53,13 @@ CD-ROM, form excellent companions to each other: ...@@ -53,6 +53,13 @@ CD-ROM, form excellent companions to each other:
O'Reilly & Associates O'Reilly & Associates
ISBN: 1-56592-197-6 ISBN: 1-56592-197-6
If you prefer to read German, try:
Das Python-Buch
by Martin von Loewis and Nils Fischbeck
Addison-Wesley-Longman, 1997
ISBN: 3-8273-1110-1
If you don't read instructions If you don't read instructions
------------------------------ ------------------------------
...@@ -375,13 +382,13 @@ clean" before giving up or complaining!). ...@@ -375,13 +382,13 @@ clean" before giving up or complaining!).
--with-thread: On most Unix systems, you can now use multiple threads. --with-thread: On most Unix systems, you can now use multiple threads.
To enable this, pass --with-thread. (--with-threads is an To enable this, pass --with-thread. (--with-threads is an
alias.) If the library required for threads lives in a alias.) If the library required for threads lives in a
peculiar place, you can use --with-thread=DIRECTORY. In the peculiar place, you can use --with-thread=DIRECTORY. NOTE:
Modules/Setup file, enable the thread module. (Threads aren't you must also enable the thread module by uncommenting it in
enabled automatically because there are run-time penalties the Modules/Setup file. (Threads aren't enabled automatically
when support for them is compiled in even if you don't use because there are run-time penalties when support for them is
them.) IMPORTANT: run "make clean" after changing (either compiled in even if you don't use them.) IMPORTANT: run "make
enabling or disabling) this option! Note: for DEC Unix clean" after changing (either enabling or disabling) this
use --with-dec-threads instead. option! Note: for DEC Unix use --with-dec-threads instead.
--with-sgi-dl: On SGI IRIX 4, dynamic loading of extension modules is --with-sgi-dl: On SGI IRIX 4, dynamic loading of extension modules is
supported by the "dl" library by Jack Jansen, which is supported by the "dl" library by Jack Jansen, which is
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment