1- This is Python release 1.5 alpha 1
1+ This is Python release 1.5 alpha 2
22==================================
33
44******************************************
@@ -24,7 +24,7 @@ What is Python anyway?
2424----------------------
2525
2626Python is an interpreted object-oriented programming language, and is
27- often compared to Tcl, Perl, Scheme or Java . For a quick summary of
27+ often compared to Tcl, Perl, Java or Scheme . For a quick summary of
2828what Python can mean for a UNIX/C programmer, read Misc/BLURB.LUTZ.
2929If you have web access, point your browser to http://www.python.org.
3030
@@ -37,11 +37,11 @@ directory as tut.tex; and http://www.python.org/doc/tut/tut.html).
3737Aaron Watters wrote a second tutorial, that may be more accessible for
3838some: http://www.wcmh.com/uworld/archives/95/tutorial/005.html.
3939
40- There are now also two books on Python. While these are still based
41- on Python 1.3 or 1.4, the language is so stable now that you'd be
42- hard pressed to find places where the books are out of date. The
43- books, both first published in October 1996 and both including a
44- CD-ROM, form excellent companions to each other:
40+ There are now also several books on Python. While these are still
41+ based on Python 1.3 or 1.4, the language is so stable now that you'd
42+ be hard pressed to find places where the books are out of date. The
43+ first two books, both first published in October 1996 and both
44+ including a CD-ROM, form excellent companions to each other:
4545
4646 Internet Programming with Python
4747 by Aaron Watters, Guido van Rossum, and James Ahlstrom
@@ -53,6 +53,13 @@ CD-ROM, form excellent companions to each other:
5353 O'Reilly & Associates
5454 ISBN: 1-56592-197-6
5555
56+ If you prefer to read German, try:
57+
58+ Das Python-Buch
59+ by Martin von Loewis and Nils Fischbeck
60+ Addison-Wesley-Longman, 1997
61+ ISBN: 3-8273-1110-1
62+
5663
5764If you don't read instructions
5865------------------------------
@@ -375,13 +382,13 @@ clean" before giving up or complaining!).
375382--with-thread: On most Unix systems, you can now use multiple threads.
376383 To enable this, pass --with-thread. (--with-threads is an
377384 alias.) If the library required for threads lives in a
378- peculiar place, you can use --with-thread=DIRECTORY. In the
379- Modules/Setup file, enable the thread module. (Threads aren't
380- enabled automatically because there are run-time penalties
381- when support for them is compiled in even if you don't use
382- them.) IMPORTANT: run "make clean" after changing (either
383- enabling or disabling) this option! Note: for DEC Unix
384- use --with-dec-threads instead.
385+ peculiar place, you can use --with-thread=DIRECTORY. NOTE:
386+ you must also enable the thread module by uncommenting it in
387+ the Modules/Setup file. (Threads aren't enabled automatically
388+ because there are run-time penalties when support for them is
389+ compiled in even if you don't use them.) IMPORTANT: run "make
390+ clean" after changing (either enabling or disabling) this
391+ option! Note: for DEC Unix use --with-dec-threads instead.
385392
386393--with-sgi-dl: On SGI IRIX 4, dynamic loading of extension modules is
387394 supported by the "dl" library by Jack Jansen, which is
0 commit comments