blob: 7459fe0f759fb1031cd4be7c2d813e1f594b7fcf [file] [log] [blame]
Guido van Rossumb06df271997-08-05 21:50:20 +00001This is Python release 1.5 alpha 3
Guido van Rossumf501b4e1996-10-25 14:32:48 +00002==================================
Guido van Rossumfaf681a1996-06-20 14:32:08 +00003
Guido van Rossum33fde571997-05-09 02:40:09 +00004******************************************
5*** RELEASE RESTRICTED TO PSA MEMBERS! ***
6******************************************
Guido van Rossum627b2d71993-12-24 10:39:16 +00007
Guido van Rossum8d7d4ed1996-07-30 21:41:07 +00008What's new in this release?
9---------------------------
Guido van Rossum3ff96dd1996-07-30 18:05:04 +000010
Guido van Rossum49523691997-08-15 18:30:14 +000011Too much has changed to list it all here. There's a long list of
12changes in Misc/NEWS. That's still not complete, but it's getting
13there... I'm working my way through a year of change logs to extract
14meaningful descriptions of all but the most insignificant changes.
Guido van Rossum33fde571997-05-09 02:40:09 +000015
Guido van Rossum49523691997-08-15 18:30:14 +000016Here are the most importand changes since 1.5a2:
Guido van Rossumb06df271997-08-05 21:50:20 +000017
Guido van Rossum49523691997-08-15 18:30:14 +000018 - The new "re" module is here (still very experimental). This is a
19 new regular expression package that uses Perl syntax and solves some
20 thread-safeness problems with the matching interface.
Guido van Rossumb06df271997-08-05 21:50:20 +000021
Guido van Rossum49523691997-08-15 18:30:14 +000022 - In support of the re module, a new form of string literals is
23 introduced, "raw strings": e.g. r"\n" is equal to "\\n".
Guido van Rossumb06df271997-08-05 21:50:20 +000024
Guido van Rossum49523691997-08-15 18:30:14 +000025 - Many previously undocumented modules are now documented; some are
26 now officially obsolete or deprecated. (Thanks Andrew Kuchling!)
Guido van Rossumb06df271997-08-05 21:50:20 +000027
Guido van Rossum49523691997-08-15 18:30:14 +000028 - The build process now builds a single library (libpython1.5.a)
29 which contains everything except for the main() entry point. This
30 makes life much easier for applications that embed Python.
Guido van Rossumb06df271997-08-05 21:50:20 +000031
Guido van Rossum49523691997-08-15 18:30:14 +000032 - GNU readline is now configured as an extension module.
Guido van Rossumb06df271997-08-05 21:50:20 +000033
Guido van Rossum49523691997-08-15 18:30:14 +000034 - There is much better support for embedding Python in applications
35 that use threads. Such applications can now create multiple
36 interpreter instances if they like to. Embedding applications can
37 also uninitialize or reinitialize Python, and explicitly manipulate
38 the global lock.
Guido van Rossumb06df271997-08-05 21:50:20 +000039
Guido van Rossum49523691997-08-15 18:30:14 +000040 - Tk 8.0b2 is supported. Support for Tk 4.0 is dropped (4.1 and
41 higher are still supported).
Guido van Rossumb06df271997-08-05 21:50:20 +000042
Guido van Rossum49523691997-08-15 18:30:14 +000043 - New Tk dialog modules by Fredrik Lundh: tkColorChooser.py,
44 tkCommonDialog.py, tkMessageBox.py, tkFileDialog.py,
45 tkSimpleDialog.py.
Guido van Rossumb06df271997-08-05 21:50:20 +000046
Guido van Rossum49523691997-08-15 18:30:14 +000047 - I've redone many aspects of the Windows version -- e.g. sys.path
48 is set more like it is done on Unix, there's a new module msvcrt
49 which exports a bunch of MS VC runtime functions like setmode() and
50 kbhit(), and there are new project files for DevStudio VC++ 5.0.
51
52 - Some new speedups, e.g. inlined some opcodes for int arguments
53 (i+i, i-i, L[i]; Fredrik Lundh).
54
55 - All known leaks have been plugged.
56
57 - New dictionary d.update(e): for k, v in e.items(): d[k] = v.
58
59 - New strategy for clearing modules: globals whose name starts with
60 a single underscore are deleted first.
61
62 - Comparisons can now raise exceptions.
63
64 - Metaclasses can now be programmed in Python (see Misc/NEWS, search
65 for "corollary").
66
67 - New tools faqwiz and webchecker included.
68
69Other important changes, if thgis is the first release you see since
701.4:
71
72 - It's much faster (almost twice for pystone.py -- see
73 Tools/scripts.)
74
75 - There's an assert statement.
76
77 - There's a -O option that removes SET_LINENO instructions, assert
78 statements and code prefixed with ``if __debug__: ...''.
79
80 - It's much smarter about the initial value for sys.path; you can
81 control it easier using $PYTHONHOME (see the usage message, e.g. try
82 ``python -h''). In most situations, the interpreter can be
83 installed at an arbitrary location without having to recompile.
84
85 - The Grand Renaming is completed: all linker-visible symbols
86 defined by Python now have a "Py" or "_Py" prefix, and the same is
87 true for most macros and typedefs.
88
89 - New regression test.
Guido van Rossum3ff96dd1996-07-30 18:05:04 +000090
91
Guido van Rossum91cb9d21995-04-10 11:47:38 +000092What is Python anyway?
93----------------------
94
95Python is an interpreted object-oriented programming language, and is
Guido van Rossum8d90f9d1997-05-22 20:13:25 +000096often compared to Tcl, Perl, Java or Scheme. For a quick summary of
Guido van Rossum6d9cc801996-08-01 17:31:22 +000097what Python can mean for a UNIX/C programmer, read Misc/BLURB.LUTZ.
Guido van Rossumdfcf35d1996-08-26 17:52:09 +000098If you have web access, point your browser to http://www.python.org.
Guido van Rossum91cb9d21995-04-10 11:47:38 +000099
100
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000101How do I learn Python?
102----------------------
103
104The official tutorial is still a good place to start (in the Doc
105directory as tut.tex; and http://www.python.org/doc/tut/tut.html).
106Aaron Watters wrote a second tutorial, that may be more accessible for
107some: http://www.wcmh.com/uworld/archives/95/tutorial/005.html.
108
Guido van Rossum8d90f9d1997-05-22 20:13:25 +0000109There are now also several books on Python. While these are still
110based on Python 1.3 or 1.4, the language is so stable now that you'd
111be hard pressed to find places where the books are out of date. The
112first two books, both first published in October 1996 and both
113including a CD-ROM, form excellent companions to each other:
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000114
115 Internet Programming with Python
116 by Aaron Watters, Guido van Rossum, and James Ahlstrom
117 MIS Press/Henry Holt publishers
118 ISBN: 1-55851-484-8
119
120 Programming Python
121 by Mark Lutz
122 O'Reilly & Associates
123 ISBN: 1-56592-197-6
124
Guido van Rossum8d90f9d1997-05-22 20:13:25 +0000125If you prefer to read German, try:
126
127 Das Python-Buch
128 by Martin von Loewis and Nils Fischbeck
129 Addison-Wesley-Longman, 1997
130 ISBN: 3-8273-1110-1
131
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000132
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000133If you don't read instructions
134------------------------------
135
136Congratulations on getting this far. :-)
137
138To start building right away (on UNIX): type "./configure" in the
139current directory and when it finishes, type "make". The section
140Build Instructions below is still recommended reading. :-)
141
142
143Copyright issues
144----------------
145
146Python is COPYRIGHTED but free to use for all. See the full copyright
147notice at the end of this file.
148
149The Python distribution is *not* affected by the GNU Public Licence
150(GPL). There are interfaces to some GNU code but these are entirely
151optional and no GNU code is distributed with Python. For all these
152packages, GPL-free public domain versions also exist.
153
Guido van Rossum627b2d71993-12-24 10:39:16 +0000154
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000155
Guido van Rossumff840491995-09-18 22:02:47 +0000156A modest plug
157=============
158
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000159*********************************************************************
160* Without your help, I won't be able to continue to support Python! *
161*********************************************************************
Guido van Rossumff840491995-09-18 22:02:47 +0000162
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000163If you use Python, please consider joining the Python Software
164Activity (PSA). See http://www.python.org/psa/.
165
166Organizations that make heavy use of Python are especially encouraged
167to become corporate members!
Guido van Rossum627b2d71993-12-24 10:39:16 +0000168
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000169
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000170Build instructions
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000171==================
Guido van Rossum627b2d71993-12-24 10:39:16 +0000172
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000173Before you can build Python, you must first configure it.
174Fortunately, the configuration and build process has been streamlined
175for most Unix installations, so all you have to do is type a few
176commands, optionally edit one file, and sit back. There are some
177platforms where things are not quite as smooth; see the platform
178specific notes below. If you want to build for multiple platforms
179sharing the same source tree, see the section on VPATH below.
Guido van Rossum627b2d71993-12-24 10:39:16 +0000180
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000181You start by running the script "./configure", which figures out your
182system configuration and creates several Makefiles. (It takes a
183minute or two -- please be patient!) When it's done, you are ready to
184run make. You may want to pass options to the configure script -- see
185the section below on configuration options and variables.
186
187To build Python, you normally type "make" in the toplevel directory.
188This will recursively run make in each of the subdirectories Parser,
189Objects, Python and Modules, creating a library file in each one. The
190executable of the interpreter is built in the Modules subdirectory and
191moved up here when it is built. If you want or need to, you can also
192chdir into each subdirectory in turn and run make there manually (do
193the Modules subdirectory last!).
194
195Once you have built an interpreter, see the subsections below on
196testing, configuring additional modules, and installation. If you run
197in trouble, see the next section.
Guido van Rossum627b2d71993-12-24 10:39:16 +0000198
Guido van Rossum0a516c91994-09-12 10:58:40 +0000199
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000200Troubleshooting
201---------------
Guido van Rossum627b2d71993-12-24 10:39:16 +0000202
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000203See also the platform specific notes in the next section.
204
Guido van Rossumfaf681a1996-06-20 14:32:08 +0000205If recursive makes fail, try invoking make as "make MAKE=make".
206
Guido van Rossum49523691997-08-15 18:30:14 +0000207If you run into other trouble, see section 3 of the FAQ
208(http://grail.cnri.reston.va.us/cgi-bin/faqw.py or
209http://www.python.org/doc/FAQ.html) for hints on what can go wrong,
210and how to fix it.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000211
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000212If you rerun the configure script with different options, remove all
213object files by running "make clean" before rebuilding. Believe it or
214not, "make clean" sometimes helps to clean up other inexplicable
215problems as well. Try it before sending in a bug report!
216
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000217If the configure script fails or doesn't seem to find things that
218should be there, inspect the config.log file.
219
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000220
221Platform specific notes
222-----------------------
223
Guido van Rossum0447a321995-10-08 01:22:33 +0000224(Some of these may no longer apply. If you find you can build Python
225on these platforms without the special directions mentioned here, let
226me know so I can remove them!)
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000227
Guido van Rossum4462e931997-01-22 21:00:32 +0000228Solaris: When using Sun's C compiler with threads, at least on Solaris
229 2.5.1, you need to add the "-mt" compiler option (the simplest
230 way is probably to specify the compiler with this option as
231 the "CC" environment variable when running the configure
232 script).
233
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000234Linux: On Linux version 1.x, once you've built Python, use it to run
235 the regen script in the Lib/linux1 directory. Apparently
236 the files as distributed don't match the system headers on
237 some Linux versions. (The "h2py" command refers to
238 Tools/scripts/h2py.py.) The modules distributed for Linux 2.x
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000239 should be okay. Shared library support now works by default
Guido van Rossum4462e931997-01-22 21:00:32 +0000240 on ELF-based x86 Linux systems. (Note: when you change the
241 status of a module from static to shared, you must remove its
242 .o file or do a "make clean".)
243
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000244DEC Unix: When enabling threads, use --with-dec-threads, not
Guido van Rossum4462e931997-01-22 21:00:32 +0000245 --with-thread.
Guido van Rossum8eca2c21996-02-14 18:37:46 +0000246
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000247AIX: A complete overhaul of the shared library support is now in
248 place. To enable it, uncomment the LINKCC line in the Setup
249 file. See Misc/AIX-NOTES for some notes on how it's done.
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000250
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000251 WARNING! In some versions of AIX, you get errors about
Guido van Rossuma3b4b611996-07-21 02:48:16 +0000252 Invalid Indent when running the Python test set. This appears
253 to be a bug in the AIX compiler. Rebuild Parser/tokenizer.c
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000254 using OPT="" or OPT=-g, or use gcc. According to the latest
255 reports, it seems this compiler bug is still present in 4.2.1.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000256
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000257HP-UX: Shared library support now works by default (at least on HP-UX
258 9.x). One other problem remains: the HP ANSI C compiler (cc
259 -Aa) is too pedantic to use, but in K&R mode, it barfs on a
260 few files (complexobject.c, getargs.c and operator.c). Until
261 this is fixed, the following seems to work:
262
263 make -k # this compiles all but a few files
264 make OPT=-Aa # compile the remaining files
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000265
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000266Minix: When using ack, use "CC=cc AR=aal RANLIB=: ./configure"!
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000267
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000268SCO: 1) Everything works much better if you add -U__STDC__ to the
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000269 defs. This is because all the SCO header files are broken.
270 Anything that isn't mentioned in the C standard it's
271 conditionally excluded when __STDC__ is defined.
272
273 2) Due to the U.S. export restrictions, SCO broke the crypt
274 stuff out into a separate library, libcrypt_i.a so the LIBS
275 needed be set to:
276
277 LIBS=' -lsocket -lcrypt_i'
278
Guido van Rossuma3b4b611996-07-21 02:48:16 +0000279 3) According to at least one report, the above apply only to
280 SCO 3 -- Python builds out of the box on SCO 5.
281
Guido van Rossum4462e931997-01-22 21:00:32 +0000282SunOS: On SunOS 4.1.x, when using the SunPro C compiler, you may want
283 to use the '-Xa' option instead of '-Xc', to enable some
284 needed non-ANSI Sunisms.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000285
Guido van Rossumcc55c2d1996-10-21 15:14:27 +0000286NeXT: To build fat binaries, use the --with-next-archs switch
287 described below.
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000288
Guido van Rossum40d63581997-08-14 19:45:30 +0000289QNX: Edit the top level Makefile to use the following compile options:
290 OPT = -Ox -Q -U_M_IX86 -U__WATCOMC__
291 Edit the Makefile in the Modules directory to read:
292 LDFLAGS = -N 48k
293
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000294
295Configuring additional built-in modules
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000296---------------------------------------
Guido van Rossum19e0c261995-01-17 16:36:34 +0000297
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000298You can configure the interpreter to contain fewer or more built-in
299modules by editing the file Modules/Setup. This file is initially
300copied (when the toplevel Makefile makes Modules/Makefile for the
301first time) from Setup.in; if it does not exist yet, make a copy
302yourself. Never edit Setup.in -- always edit Setup. Read the
303comments in the file for information on what kind of edits you can
304make. When you have edited Setup, Makefile and config.c in Modules
305will automatically be rebuilt the next time you run make in the
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000306toplevel directory. (When working inside the Modules directory, use
307"make Makefile; make".)
Guido van Rossum627b2d71993-12-24 10:39:16 +0000308
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000309The default collection of modules should build on any Unix system, but
310many optional modules should work on all modern Unices (e.g. try dbm,
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000311nis, termios, timing, syslog, curses, new, soundex, parser). Often
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000312the quickest way to determine whether a particular module works or not
313is to see if it will build: enable it in Setup, then if you get
314compilation or link errors, disable it -- you're missing support.
315
316On SGI IRIX, there are modules that interface to many SGI specific
317system libraries, e.g. the GL library and the audio hardware.
318
319For SunOS and Solaris, enable module "sunaudiodev" to support the
320audio device.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000321
Guido van Rossum4462e931997-01-22 21:00:32 +0000322In addition to the file Setup, you can also edit the file Setup.local.
323(the makesetup script processes both). You may find it more
324convenient to edit Setup.local and leave Setup alone. Then, when
325installing a new Python version, you can copy your old Setup.local
326file.
327
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000328
329Setting the optimization/debugging options
330------------------------------------------
331
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000332If you want or need to change the optimization/debugging options for
333the C compiler, assign to the OPT variable on the toplevel make
334command; e.g. "make OPT=-g" will build a debugging version of Python
335on most platforms. The default is OPT=-O; a value for OPT in the
336environment when the configure script is run overrides this default
337(likewise for CC; and the initial value for LIBS is used as the base
338set of libraries to link with).
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000339
340
341Testing
342-------
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000343
344To test the interpreter that you have just built, type "make test".
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000345This runs the test set twice (once with no compiled files, once with
346the compiled files left by the previous test run). The test set
347produces some output. You can generally ignore the messages about
348skipped tests due to an optional feature that can't be imported (if
349you want to test those modules, edit Modules/Setup to configure them).
350If a messages is printed about a failed test or a traceback or core
351dump is produced, something's wrong. On some systems, test_strftime
352fails due to a non-standard implementation of strftime() in the C
353library. This can be ignored (or you can complain to your vendor).
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000354
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000355IMPORTANT: If the tests fail and you decide to mail a bug report,
356*don't* include the output of "make test". It is useless. Run the
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000357test that fails manually, as follows:
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000358
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000359 python ../Lib/test/test_whatever.py
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000360
361(substituting the top of the source tree for .. if you built in a
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000362different directory). This runs the test in verbose mode.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000363
364
365Installing
366----------
367
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000368Installing Python was never this easy!
Guido van Rossum8d7d4ed1996-07-30 21:41:07 +0000369
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000370To install the Python binary, library modules, shared library modules
371(see below), include files, configuration files, and the manual page,
372just type "make install". This will install all platform-independent
373files in subdirectories the directory given with the --prefix option
374to configure or the 'prefix' Make variable (default /usr/local), and
375all binary and other platform-specific files in subdirectories if the
376directory given by --exec-prefix or the 'exec_prefix' Make variable
377(defaults to the --prefix directory). All subdirectories created will
378have Python's version number in their name, e.g. the library modules
Guido van Rossum33fde571997-05-09 02:40:09 +0000379are installed in "/usr/local/lib/python1.5/" by default. The Python
380binary is installed as "python1.5" and a hard link named "python" is
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000381created. The only file not installed with a version number in its
382name is the manual page, installed as "/usr/local/man/man1/python.1"
383by default.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000384
Guido van Rossum49523691997-08-15 18:30:14 +0000385If you have a previous installation of a pre-1.5 Python that you don't
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000386want to replace yet, use "make altinstall". This installs the same
387set of files as "make install" except it doesn't create the hard link
Guido van Rossum33fde571997-05-09 02:40:09 +0000388to "python1.5" named "python" and it doesn't install the manual page
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000389at all.
390
391The only thing you may have to install manually is the Python mode for
392Emacs. (But then again, more recent versions of Emacs may already
393have it!) This is the file Misc/python-mode.el; follow the
394instructions that came with Emacs for installation of site specific
395files.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000396
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000397
398Configuration options and variables
399-----------------------------------
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000400
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000401Some special cases are handled by passing options to the configure
402script.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000403
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000404WARNING: if you rerun the configure script with different options, you
405must run "make clean" before rebuilding. Exceptions to this rule:
406after changing --prefix or --exec-prefix, all you need to do is remove
Guido van Rossumb06df271997-08-05 21:50:20 +0000407Modules/getpath.o.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000408
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000409--with(out)-gcc: The configure script uses gcc (the GNU C compiler) if
410 it finds it. If you don't want this, or if this compiler is
411 installed but broken on your platform, pass the option
412 --without-gcc. You can also pass "CC=cc" (or whatever the
413 name of the proper C compiler is) in the environment, but the
414 advantage of using --without-gcc is that this option is
415 remembered by the config.status script for its --recheck
416 option.
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000417
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000418--prefix, --exec-prefix: If you want to install the binaries and the
419 Python library somewhere else than in /usr/local/{bin,lib},
420 you can pass the option --prefix=DIRECTORY; the interpreter
421 binary will be installed as DIRECTORY/bin/python and the
422 library files as DIRECTORY/lib/python/*. If you pass
423 --exec-prefix=DIRECTORY (as well) this overrides the
424 installation prefix for architecture-dependent files (like the
425 interpreter binary). Note that --prefix=DIRECTORY also
426 affects the default module search path (sys.path), when
427 Modules/config.c is compiled. Passing make the option
428 prefix=DIRECTORY (and/or exec_prefix=DIRECTORY) overrides the
429 prefix set at configuration time; this may be more convenient
430 than re-running the configure script if you change your mind
431 about the install prefix...
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000432
Guido van Rossumb06df271997-08-05 21:50:20 +0000433--with-readline: This option is no longer supported. To use GNU
434 readline, enable module "readline" in the Modules/Setup file.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000435
Guido van Rossumfaf681a1996-06-20 14:32:08 +0000436--with-thread: On most Unix systems, you can now use multiple threads.
Guido van Rossum4462e931997-01-22 21:00:32 +0000437 To enable this, pass --with-thread. (--with-threads is an
438 alias.) If the library required for threads lives in a
Guido van Rossum8d90f9d1997-05-22 20:13:25 +0000439 peculiar place, you can use --with-thread=DIRECTORY. NOTE:
440 you must also enable the thread module by uncommenting it in
441 the Modules/Setup file. (Threads aren't enabled automatically
442 because there are run-time penalties when support for them is
443 compiled in even if you don't use them.) IMPORTANT: run "make
444 clean" after changing (either enabling or disabling) this
445 option! Note: for DEC Unix use --with-dec-threads instead.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000446
447--with-sgi-dl: On SGI IRIX 4, dynamic loading of extension modules is
448 supported by the "dl" library by Jack Jansen, which is
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000449 ftp'able from ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000450 This is enabled (after you've ftp'ed and compiled the dl
451 library!) by passing --with-sgi-dl=DIRECTORY where DIRECTORY
452 is the absolute pathname of the dl library. (Don't bother on
453 IRIX 5, it already has dynamic linking using SunOS style
454 shared libraries.) Support for this feature is deprecated.
455
456--with-dl-dld: Dynamic loading of modules is rumoured to be supported
457 on some other systems: VAX (Ultrix), Sun3 (SunOS 3.4), Sequent
458 Symmetry (Dynix), and Atari ST. This is done using a
459 combination of the GNU dynamic loading package
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000460 (ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z) and an
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000461 emulation of the SGI dl library mentioned above (the emulation
462 can be found at
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000463 ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z). To
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000464 enable this, ftp and compile both libraries, then call the
465 configure passing it the option
466 --with-dl-dld=DL_DIRECTORY,DLD_DIRECTORY where DL_DIRECTORY is
467 the absolute pathname of the dl emulation library and
468 DLD_DIRECTORY is the absolute pathname of the GNU dld library.
469 (Don't bother on SunOS 4 or 5, they already have dynamic
470 linking using shared libraries.) Support for this feature is
471 deprecated.
472
473--with-libm, --with-libc: It is possible to specify alternative
474 versions for the Math library (default -lm) and the C library
475 (default the empty string) using the options
476 --with-libm=STRING and --with-libc=STRING, respectively. E.g.
477 if your system requires that you pass -lc_s to the C compiler
478 to use the shared C library, you can pass --with-libc=-lc_s.
479 These libraries are passed after all other libraries, the C
480 library last.
Guido van Rossum3ff96dd1996-07-30 18:05:04 +0000481
482--with-next-archs='arch1 arch2': Under NEXTSTEP, this will build
483 all compiled binaries with the architectures listed. Includes
484 correctly setting the target architecture specific resource
Guido van Rossumcc55c2d1996-10-21 15:14:27 +0000485 directory. (This option is not supported on other platforms.)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000486
Guido van Rossumd02ba451996-07-31 17:36:01 +0000487--with-libs='libs': Add 'libs' to the LIBS that the python
488 linked against.
489
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000490
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000491Building for multiple architectures (using the VPATH feature)
492-------------------------------------------------------------
493
494If your file system is shared between multiple architectures, it
495usually is not necessary to make copies of the sources for each
496architecture you want to support. If the make program supports the
497VPATH feature, you can create an empty build directory for each
498architecture, and in each directory run the configure script (on the
499appropriate machine with the appropriate options). This creates the
500necessary subdirectories and the Makefiles therein. The Makefiles
501contain a line VPATH=... which points to directory containing the
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000502actual sources. (On SGI systems, use "smake -J1" instead of "make" if
503you use VPATH -- don't try gnumake.)
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000504
505For example, the following is all you need to build a minimal Python
506in /usr/tmp/python (assuming ~guido/src/python is the toplevel
507directory and you want to build in /usr/tmp/python):
508
509 $ mkdir /usr/tmp/python
510 $ cd /usr/tmp/python
511 $ ~guido/src/python/configure
512 [...]
513 $ make
514 [...]
515 $
516
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000517Note that Modules/Makefile copies the original Setup file to the build
518directory if it finds no Setup file there. This means that you can
519edit the Setup file for each architecture independently. For this
520reason, subsequent changes to the original Setup file are not tracked
521automatically, as they might overwrite local changes. To force a copy
522of a changed original Setup file, delete the target Setup file. (The
523makesetup script supports multiple input files, so if you want to be
524fancy you can change the rules to create an empty Setup.local if it
525doesn't exist and run it with arguments $(srcdir)/Setup Setup.local;
526however this assumes that you only need to add modules.)
527
528
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000529Building on non-UNIX systems
530----------------------------
531
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000532Building Python for a PC is now a piece of cake!
Guido van Rossum8d7d4ed1996-07-30 21:41:07 +0000533
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000534Enter the directory "PC" and read the file "readme.txt". Most popular
535non-Unix PC platforms and compilers are supported (Unix ports to the
536PC such as Linux, FreeBSD or Solaris-x86 of course use the standard
537Unix build instructions).
538
539For the Mac, a separate source distribution will be made available,
540for use with the CodeWarrior compiler. If you are interested in Mac
541development, join the PythonMac Special Interest Group
542(http://www.python.org/sigs/pythonmac-sig/, or send email to
543pythonmac-sig-request@python.org).
544
545Of course, there are also binary distributions available for these
546platforms -- see http://www.python.org/python/.
547
548To port Python to a new non-UNIX system, you will have to fake the
549effect of running the configure script manually (for Mac and PC, this
550has already been done for you). A good start is to copy the file
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000551config.h.in to config.h and edit the latter to reflect the actual
552configuration of your system. Most symbols must simply be defined as
5531 only if the corresponding feature is present and can be left alone
554otherwise; however RETSIGTYPE must always be defined, either as int or
555as void, and the *_t type symbols must be defined as some variant of
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000556int if they need to be defined at all.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000557
558
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000559
560Miscellaneous issues
561====================
562
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000563Documentation
564-------------
565
566All documentation is provided in the subdirectory Doc in the form of
567LaTeX files. In order of importance for new users: Tutorial (tut),
568Library Reference (lib), Language Reference (ref), Extending (ext).
569Especially the Library Reference is of immense value since much of
570Python's power (including the built-in data types and functions!) is
571described here.
572
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000573To print the documentation from the LaTeX files, chdir into the Doc
574subdirectory, type "make" (let's hope you have LaTeX installed!), and
575send the four resulting PostScript files (tut.ps, lib.ps, ref.ps, and
576ext.ps) to the printer. See the README file there. If you don't have
577LaTeX, you can ftp the PostScript files from the ftp archives (see
578below).
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000579
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000580All documentation is also available on-line via the Python web site
581(http://www.python.org/, see below). It can also be downloaded
582separately from the ftp archives (see below) in Emacs INFO, HTML or
Guido van Rossum49523691997-08-15 18:30:14 +0000583PostScript form -- see the web site or the FAQ
584(http://grail.cnri.reston.va.us/cgi-bin/faqw.py or
585http://www.python.org/doc/FAQ.html) for more info.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000586
587
588Emacs mode
589----------
590
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000591There's an excellent Emacs editing mode for Python code; see the file
592Misc/python-mode.el. Originally written by Tim Peters, it is now
Guido van Rossum49523691997-08-15 18:30:14 +0000593maintained by Barry Warsaw <bwarsaw@cnri.reston.va.us>. The latest
594version is online at ftp://ftp.python.org/pub/emacs/python-mode.el.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000595
596
Guido van Rossum8d7d4ed1996-07-30 21:41:07 +0000597Web site
598--------
599
600Python's own web site has URL http://www.python.org/. Come visit us!
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000601There are a number of mirrors, listed on the home page -- try a mirror
602that's close you you.
Guido van Rossum8d7d4ed1996-07-30 21:41:07 +0000603
604
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000605Ftp site
606--------
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000607
Guido van Rossum49523691997-08-15 18:30:14 +0000608Python's own ftp site is ftp://ftp.python.org/pub/python. There are
609numerous mirrors; see http://www.python.org/python/Mirrors.html for a
610list of mirror sites.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000611
612
613Newsgroup and mailing list
614--------------------------
615
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000616There are a newsgroup and a mailing list devoted to Python. The
617newsgroup, comp.lang.python, contains exactly the same messages as the
618mailing list (though not always in the same order, due to the
619mysterious nature of the Usenet news distribution algorithm). To
620subscribe to the mailing list, send mail containing your real name and
621e-mail address to "python-list-request@cwi.nl". Use the same address
622if you want to unsibscribed. (A real person reads these messages, so
623no LISTPROC or Majordomo commands, please, and please be patient --
624normal turn-around time is about one working day.)
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000625
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000626The Python web site contains a search form that lets you search the
627newsgroup archives (or the web site itself). Click on the "search"
628link in the banner menu on any page of http://www.python.org/.
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000629
630
631Bug reports
632-----------
633
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000634Bugs are best reported to the comp.lang.python newsgroup or the Python
Guido van Rossumcc55c2d1996-10-21 15:14:27 +0000635mailing list -- see the section "Newsgroup and mailing list" above.
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000636Before posting, check the newsgroup archives (see above) to see if
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000637your bug has already been reported!
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000638
639
640Questions
641---------
642
Guido van Rossum49523691997-08-15 18:30:14 +0000643For help, if you can't find it in the manuals or on the web site, it's
644best to post to the comp.lang.python or the Python mailing list (see
645above). If you specifically don't want to involve the newsgroup or
646mailing list, send questions to python-help@python.org.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000647
648
649The Tk interface
650----------------
651
652Tk (the user interface component of John Ousterhout's Tcl language) is
653also usable from Python. Since this requires that you first build and
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000654install Tcl/Tk, the Tk interface is not enabled by default. It works
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000655with Tcl 7.5 and Tk 4.1 as well as with Tcl 7.4 and Tk 4.0. I didn't
656have the time to test it with Tcl 7.6 and Tk 4.2 yet, but it might
657well work.
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000658
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000659See http://www.sunlabs.com/research/tcl/ for more info on where to get
Guido van Rossum33fde571997-05-09 02:40:09 +0000660Tcl/Tk. Also http://sunscript.sun.com/.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000661
662To enable the Python/Tk interface, once you've built and installed
663Tcl/Tk, all you need to do is edit two lines in Modules/Setup; search
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000664for the string "_tkinter". Uncomment one (normally the first) of the
665lines beginning with "#_tkinter" and un-comment the line beginning
666with "#TKPATH". If you have installed Tcl/Tk or X11 in unusual
667places, you will have to edit the first line to fix or add -I and -L
668options. See the Build Instructions above for more details.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000669
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000670There is little documentation on how to use Tkinter; however most of
671the Tk manual pages apply quite straightforwardly. Begin with
672fetching the "Tk Lifesaver" document,
673e.g. ftp://ftp.python.org/pub/python/doc/tkinter-doc.tar.gz (a gzipped
674tar file containing a PostScript file) or the on-line version
675http://www.python.org/doc/life-preserver/index.html. Reading the
676Tkinter.py source will reveal most details on how Tkinter calls are
677translated into Tcl code.
678
679There are demos in the Demo/tkinter directory, in the subdirectories
680guido, matt and www (the matt and guido subdirectories have been
681overhauled to use more recent Tkinter coding conventions).
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000682
683Note that there's a Python module called "Tkinter" (capital T) which
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000684lives in Lib/tkinter/Tkinter.py, and a C module called "_tkinter"
685(lower case t and leading underscore) which lives in
686Modules/_tkinter.c. Demos and normal Tk applications only import the
687Python Tkinter module -- only the latter uses the C _tkinter module
688directly. In order to find the C _tkinter module, it must be compiled
689and linked into the Python interpreter -- the _tkinter line in the
690Setup file does this. In order to find the Python Tkinter module,
691sys.path must be set correctly -- the TKPATH assignment in the Setup
692file takes care of this, but only if you install Python properly
693("make install libinstall"). (You can also use dynamic loading for
694the C _tkinter module, in which case you must manually fix up sys.path
695or set $PYTHONPATH for the Python Tkinter module.)
Guido van Rossum84c8c7f1995-08-28 02:44:24 +0000696
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000697
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000698Distribution structure
699----------------------
700
701Most subdirectories have their own README file. Most files have
702comments.
703
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000704BUGS A list of known bugs (not completely up-to-date)
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000705Demo/ Demonstration scripts, modules and programs
706Doc/ Documentation (LaTeX sources)
707Grammar/ Input for the parser generator
708Include/ Public header files
709Lib/ Python library modules
710Makefile.in Source from which config.status creates Makefile
711Misc/ Miscellaneous files
712Modules/ Implementation of most built-in modules
713Objects/ Implementation of most built-in object types
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000714PC/ PC porting files (DOS, Windows, NT, OS/2)
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000715Parser/ The parser and tokenizer and their input handling
716Python/ The "compiler" and interpreter
717README The file you're reading now
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000718TODO A list of things that could be done (not up-to-date)
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000719Tools/ Some useful programs written in Python
720acconfig.h Additional input for the autoheader program
721config.h.in Source from which config.status creates config.h
722configure Configuration shell script (GNU autoconf output)
723configure.in Configuration specification (GNU autoconf input)
724install-sh Shell script used to install files
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000725
726The following files will (may) be created in the toplevel directory by
727the configuration and build processes:
728
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000729Makefile Build rules
730config.cache cache of configuration variables
731config.h Configuration header
732config.log log from last configure run
733config.status status from last run of configure script
734python The executable interpreter
735tags, TAGS Tags files for vi and Emacs
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000736
737
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000738Author's address
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000739================
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000740
741Guido van Rossum
Guido van Rossumfaf681a1996-06-20 14:32:08 +0000742CNRI
7431895 Preston White Drive
Guido van Rossum8d7d4ed1996-07-30 21:41:07 +0000744Reston, VA 20191
Guido van Rossumfaf681a1996-06-20 14:32:08 +0000745USA
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000746
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000747E-mail: guido@cnri.reston.va.us or guido@python.org
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000748
749
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000750
751Copyright notice
752================
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000753
754The Python source is copyrighted, but you can freely use and copy it
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000755as long as you don't change or remove the copyright notice:
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000756
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000757----------------------------------------------------------------------
Guido van Rossumaf5b83e1995-01-04 19:02:35 +0000758Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
759The Netherlands.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000760
761 All Rights Reserved
762
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000763Permission to use, copy, modify, and distribute this software and its
764documentation for any purpose and without fee is hereby granted,
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000765provided that the above copyright notice appear in all copies and that
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000766both that copyright notice and this permission notice appear in
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000767supporting documentation, and that the names of Stichting Mathematisch
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000768Centrum or CWI or Corporation for National Research Initiatives or
769CNRI not be used in advertising or publicity pertaining to
770distribution of the software without specific, written prior
771permission.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000772
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000773While CWI is the initial source for this software, a modified version
774is made available by the Corporation for National Research Initiatives
775(CNRI) at the Internet address ftp://ftp.python.org.
776
777STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
778REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
779MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
780CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
781DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
782PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
783TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
784PERFORMANCE OF THIS SOFTWARE.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000785----------------------------------------------------------------------
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000786
787
Guido van Rossumfaf681a1996-06-20 14:32:08 +0000788--Guido van Rossum (home page: http://www.python.org/~guido/)