blob: 222f551566acf772cfe726bc237b82e4153e8d87 [file] [log] [blame]
Guido van Rossum79808261997-12-11 18:01:47 +00001This is Python release 1.5 beta 2
Guido van Rossumf501b4e1996-10-25 14:32:48 +00002==================================
Guido van Rossumfaf681a1996-06-20 14:32:08 +00003
Guido van Rossum79808261997-12-11 18:01:47 +00004The official release date for this version is Friday, December 12,
51997.
6
7
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 Rossum66d010a1997-11-26 17:37:31 +000011There's a loooong list of changes since release 1.4 in the file
12Misc/NEWS. Some highlights:
Guido van Rossum33fde571997-05-09 02:40:09 +000013
Guido van Rossum66d010a1997-11-26 17:37:31 +000014 - It's much faster (almost twice for the Lib/test/pystone.py
15 benchmark.)
Guido van Rossumb06df271997-08-05 21:50:20 +000016
Guido van Rossum66d010a1997-11-26 17:37:31 +000017 - There is now an assert statement: ``assert <condition>'' or
18 ``assert <condition>, <errormessage>''. It raises AssertionError if
19 the condition evaluates to false. The default error message is
20 empty; the source text of the assertion statement is printed as part
21 of the traceback.
22
23 - There is now built-in support for importing hierarchical module
24 names (e.g. "import spam.ham.eggs"); ni is declared obsolete. Note
25 that the built-in package support is somewhat simpler (no __ and
26 __domain__) and differs in one crucial aspect: __init__.py is
27 required, and loaded in the package's namespace instead of as a
28 submodule. For more information, see
29 http://grail.cnri.reston.va.us/python/essays/packages.html.
30
31 - The new "re" module (Perl style regular expressions) is here. It
32 is based on Philip Hazel's pcre code; the Python interfaces were put
Guido van Rossumb7f454d1997-12-02 19:44:31 +000033 together by Andrew Kuchling, Tim Peters and Jeffrey Ollie. The
34 regex module is declared obsolete.
Guido van Rossum66d010a1997-11-26 17:37:31 +000035
36 - In support of the re module, a new form of string literals is
37 introduced, "raw strings": e.g. r"\n" is equal to "\\n".
38
39 - All standard exceptions and most exceptions defined in standard
40 extension modules are now classes. Use python -X to revert back to
41 string exceptions. See
42 http://grail.cnri.reston.va.us/python/essays/stdexceptions.html
43 for more info.
44
45 - Comparisons can now raise exceptions (previously, exceptions
46 occuring during comparisons were swept under the rug).
47
48 - New dictionary methods: .clear(), .copy(), .update(), .get(). The
49 first two are obvious; d1.update(d2) is equivalent to the for loop
50 ``for k in d2.keys(): d1[k] = d2[k]''; and d.get(k) returns d[k] if
51 it exists and None (or the optional second argument) if not.
52
53 - There is a new regression test harness, which tests many more
Guido van Rossum82536711997-11-26 21:20:51 +000054 modules. (To run the tests, do "import test.autotest".)
Guido van Rossum66d010a1997-11-26 17:37:31 +000055
56 - The interpreter is much smarter about the initial value for
57 sys.path; you can control it easier using $PYTHONHOME (see the usage
58 message, e.g. try ``python -h''). In most situations, the
59 interpreter can be installed at an arbitrary location without having
60 to recompile.
61
62 - The build process now builds a single library (libpython1.5.a)
63 which contains everything except for the main() entry point. This
64 makes life much easier for applications that embed Python.
65
66 - There is much better support for embedding, including threads,
67 multiple interpreters(!), uninitialization, and access to the global
68 interpreter lock.
69
70 - There is a -O option that removes SET_LINENO instructions, assert
71 statements and code prefixed with ``if __debug__: ...''. (It still
72 only makes a few percent difference, so don't get all worked up
73 about this.)
74
75 - The Grand Renaming is completed: all linker-visible symbols
76 defined by Python now have a "Py" or "_Py" prefix, and the same is
77 true for most macros and typedefs.
78
Guido van Rossum79808261997-12-11 18:01:47 +000079If you previously downloaded 1.5b1, here are the most relevant changes
80since then (of course all known bugs have been fixed, leaks plugged,
81and some documentation has been added). The full list of changes
82since 1.5b1 is presented at the end of the Misc/NEWS file.
Guido van Rossum66d010a1997-11-26 17:37:31 +000083
Guido van Rossum79808261997-12-11 18:01:47 +000084 - Thanks to all who contributed doc strings for library modules!
Guido van Rossumb06df271997-08-05 21:50:20 +000085
Guido van Rossum79808261997-12-11 18:01:47 +000086 - The portability problems caused by indented preprocessor commands
87 and C++ style comments should be gone now.
Guido van Rossumb06df271997-08-05 21:50:20 +000088
Guido van Rossum79808261997-12-11 18:01:47 +000089 - Lots of improvements to python-mode.el again.
Guido van Rossumb06df271997-08-05 21:50:20 +000090
Guido van Rossum79808261997-12-11 18:01:47 +000091 - Changes in pickle.py and cPickle.c: when unpickling an instance of
92 a class that doesn't define the __getinitargs__() method, the
93 __init__() constructor is no longer called. This makes a much
94 larger group of classes picklable by default, but may occasionally
95 change semantics. To force calling __init__() on unpickling, define
96 a __getinitargs__() method. Other changes too, in particular
97 cPickle now handles classes defined in packages correctly. The
98 same change applies to copying instances with copy.py.
Guido van Rossumb06df271997-08-05 21:50:20 +000099
Guido van Rossum79808261997-12-11 18:01:47 +0000100 - Locale support in the "re" (Perl regular expressions) module. Use
101 the flag re.L (or re.LOCALE) to enable locale-specific matching
102 rules for \w and \b. The in-line syntax for this flag is (?L).
Guido van Rossum64773801997-11-26 17:07:02 +0000103
Guido van Rossum79808261997-12-11 18:01:47 +0000104 - The built-in function isinstance(x, y) now also succeeds when y is
105 a type object and type(x) is y.
Guido van Rossum64773801997-11-26 17:07:02 +0000106
Guido van Rossum79808261997-12-11 18:01:47 +0000107 - repr() and str() of class and instance objects now reflect the
108 package/module in which the class is defined.
Guido van Rossum64773801997-11-26 17:07:02 +0000109
Guido van Rossum79808261997-12-11 18:01:47 +0000110 - Module "ni" has been removed. (If you really need it, it's been
111 renamed to "ni1". Let me know if this causes any problems for you.
112 Package authors are encouraged to write __init__.py files that
113 support both ni and 1.5 package support, so the same version can be
114 used with Python 1.4 as well as 1.5.)
Guido van Rossum64773801997-11-26 17:07:02 +0000115
Guido van Rossum79808261997-12-11 18:01:47 +0000116 - The thread module is now automatically included when threads are
117 configured. (You must remove it from your existing Setup file,
118 since it is now in its own Setup.thread file.)
119
120 - New command line option "-x" to skip the first line of the script;
121 handy to make executable scripts on non-Unix platforms.
122
123 - In importdl.c, add the RTLD_GLOBAL to the dlopen() flags. I
124 haven't checked how this affects things, but it should make symbols
125 in one shared library available to the next one.
126
127 - The Windows configuration adds a new main program, "pythonw", and
128 registers a new extension, ".pyw" that invokes this. This is a
129 standard Python interpreter that does not pop up a console window;
130 handy for pure Tkinter applications. All output to the original
131 stdout and stderr is lost; reading from the original stdin yields
132 EOF.
Guido van Rossum64773801997-11-26 17:07:02 +0000133
Guido van Rossum64773801997-11-26 17:07:02 +0000134
135If you don't read instructions
136------------------------------
137
138Congratulations on getting this far. :-)
139
140To start building right away (on UNIX): type "./configure" in the
141current directory and when it finishes, type "make". The section
142Build Instructions below is still recommended reading. :-)
Guido van Rossum3ff96dd1996-07-30 18:05:04 +0000143
144
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000145What is Python anyway?
146----------------------
147
148Python is an interpreted object-oriented programming language, and is
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000149often compared to Tcl, Perl, Java or Scheme. To find out more, point
150your browser to http://www.python.org/.
151
152
153A modest plug
154-------------
155
156************************************************************************
157* Without your support, I won't be able to continue to work on Python! *
158************************************************************************
159
160If you use Python, please consider joining the Python Software
161Activity (PSA). See http://www.python.org/psa/.
162
163Organizations that make heavy use of Python are especially encouraged
164to become corporate members!
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000165
166
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000167How do I learn Python?
168----------------------
169
170The official tutorial is still a good place to start (in the Doc
171directory as tut.tex; and http://www.python.org/doc/tut/tut.html).
172Aaron Watters wrote a second tutorial, that may be more accessible for
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000173some: http://www.wcmh.com/uworld/archives/95/tutorial/005.html. Both
174tutorials (as well as most other sources) assume that you already know
175how to program -- if you'd like to write "Python for Dummies", I know
176a publisher who would like to talk to you...
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000177
Guido van Rossum8d90f9d1997-05-22 20:13:25 +0000178There are now also several books on Python. While these are still
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000179based on Python 1.3 or 1.4, the information in them is still 99%
180correct. The first two books, both first published in October 1996
181and both including a CD-ROM, form excellent companions to each other:
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000182
183 Internet Programming with Python
184 by Aaron Watters, Guido van Rossum, and James Ahlstrom
185 MIS Press/Henry Holt publishers
186 ISBN: 1-55851-484-8
187
188 Programming Python
189 by Mark Lutz
190 O'Reilly & Associates
191 ISBN: 1-56592-197-6
192
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000193If you can read German, try:
Guido van Rossum8d90f9d1997-05-22 20:13:25 +0000194
195 Das Python-Buch
196 by Martin von Loewis and Nils Fischbeck
197 Addison-Wesley-Longman, 1997
198 ISBN: 3-8273-1110-1
199
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000200
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000201Copyright issues
202----------------
203
204Python is COPYRIGHTED but free to use for all. See the full copyright
Guido van Rossum64773801997-11-26 17:07:02 +0000205notice at the end of this file and in the file Misc/COPYRIGHT.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000206
207The Python distribution is *not* affected by the GNU Public Licence
208(GPL). There are interfaces to some GNU code but these are entirely
Guido van Rossum64773801997-11-26 17:07:02 +0000209optional and no GNU code is distributed with Python.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000210
Guido van Rossum627b2d71993-12-24 10:39:16 +0000211
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000212Build instructions
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000213==================
Guido van Rossum627b2d71993-12-24 10:39:16 +0000214
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000215Before you can build Python, you must first configure it.
216Fortunately, the configuration and build process has been streamlined
217for most Unix installations, so all you have to do is type a few
218commands, optionally edit one file, and sit back. There are some
219platforms where things are not quite as smooth; see the platform
220specific notes below. If you want to build for multiple platforms
221sharing the same source tree, see the section on VPATH below.
Guido van Rossum627b2d71993-12-24 10:39:16 +0000222
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000223You start by running the script "./configure", which figures out your
224system configuration and creates several Makefiles. (It takes a
225minute or two -- please be patient!) When it's done, you are ready to
226run make. You may want to pass options to the configure script -- see
227the section below on configuration options and variables.
228
229To build Python, you normally type "make" in the toplevel directory.
230This will recursively run make in each of the subdirectories Parser,
231Objects, Python and Modules, creating a library file in each one. The
232executable of the interpreter is built in the Modules subdirectory and
233moved up here when it is built. If you want or need to, you can also
234chdir into each subdirectory in turn and run make there manually (do
235the Modules subdirectory last!).
236
237Once you have built an interpreter, see the subsections below on
238testing, configuring additional modules, and installation. If you run
239in trouble, see the next section.
Guido van Rossum627b2d71993-12-24 10:39:16 +0000240
Guido van Rossum0a516c91994-09-12 10:58:40 +0000241
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000242Troubleshooting
243---------------
Guido van Rossum627b2d71993-12-24 10:39:16 +0000244
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000245See also the platform specific notes in the next section.
246
Guido van Rossumfaf681a1996-06-20 14:32:08 +0000247If recursive makes fail, try invoking make as "make MAKE=make".
248
Guido van Rossum49523691997-08-15 18:30:14 +0000249If you run into other trouble, see section 3 of the FAQ
250(http://grail.cnri.reston.va.us/cgi-bin/faqw.py or
251http://www.python.org/doc/FAQ.html) for hints on what can go wrong,
252and how to fix it.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000253
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000254If you rerun the configure script with different options, remove all
255object files by running "make clean" before rebuilding. Believe it or
256not, "make clean" sometimes helps to clean up other inexplicable
257problems as well. Try it before sending in a bug report!
258
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000259If the configure script fails or doesn't seem to find things that
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000260should be there, inspect the config.log file. When you fix a
261configure problem, be sure to remove config.cache!
262
263If you get a warning for every file about the -Olimit option being no
264longer supported, you can ignore it. There's no foolproof way to know
265whether this option is needed; all I can do is test whether it is
266accepted without error. On some systems, e.g. older SGI compilers, it
267is essential for performance (specifically when compiling ceval.c,
268which has more basic blocks than the default limit of 1000). If the
269warning bothers you, edit the Makefile to remove "-Olimit 1500" from
270the OPT variable.
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000271
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000272
273Platform specific notes
274-----------------------
275
Guido van Rossum0447a321995-10-08 01:22:33 +0000276(Some of these may no longer apply. If you find you can build Python
277on these platforms without the special directions mentioned here, let
278me know so I can remove them!)
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000279
Guido van Rossumc0be2f51997-10-08 05:05:28 +000028064-bit platforms: The modules audioop, imageop and rgbimg don't work.
281 Don't try to enable them in the Modules/Setup file. They
282 contain code that is quite wordsize sensitive. (If you have a
283 fix, let me know!)
284
Guido van Rossum4462e931997-01-22 21:00:32 +0000285Solaris: When using Sun's C compiler with threads, at least on Solaris
286 2.5.1, you need to add the "-mt" compiler option (the simplest
287 way is probably to specify the compiler with this option as
288 the "CC" environment variable when running the configure
289 script).
290
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000291Linux: On Linux version 1.x, once you've built Python, use it to run
292 the regen script in the Lib/linux1 directory. Apparently
293 the files as distributed don't match the system headers on
294 some Linux versions. (The "h2py" command refers to
295 Tools/scripts/h2py.py.) The modules distributed for Linux 2.x
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000296 should be okay. Shared library support now works by default
Guido van Rossum4462e931997-01-22 21:00:32 +0000297 on ELF-based x86 Linux systems. (Note: when you change the
298 status of a module from static to shared, you must remove its
299 .o file or do a "make clean".)
300
Fred Drake61280911997-12-08 14:10:40 +0000301 Under RedHat Linux 5.0, if upgraded from a previous version,
302 remove the LinuxThreads packages. This is needed because
303 LinuxThreads conflicts with the new thread support provided by
304 glibc. Before running Python's configure script, use the
305 following commands as root (version numbers may differ; these
306 are from a stock 4.2 install):
307
308 % rpm -qa | grep ^linuxthread
309 linuxthreads-0.5-1
310 linuxthreads-devel-0.5-1
311 % rpm -e linuxthreads linuxthreads-devel
312
313 While Python only needs this to be done to allow thread
314 support to be included, the conflicts these packages create
315 with the new glibc may cause other packages which use threads
316 to fail as well, so their removal is a good idea regardless of
317 how you configure python.
318
319 Also under RedHat Linux 5.0, the crypt module now needs the
320 -lcrypt option. Uncomment this flag in Modules/Setup, or
321 comment out the crypt module in the same file.
322
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000323DEC Unix: When enabling threads, use --with-dec-threads, not
Guido van Rossum4462e931997-01-22 21:00:32 +0000324 --with-thread.
Guido van Rossum8eca2c21996-02-14 18:37:46 +0000325
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000326AIX: A complete overhaul of the shared library support is now in
Guido van Rossumcbfcb171997-10-20 22:57:00 +0000327 place. See Misc/AIX-NOTES for some notes on how it's done.
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000328
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000329 WARNING! In some versions of AIX, you get errors about
Guido van Rossuma3b4b611996-07-21 02:48:16 +0000330 Invalid Indent when running the Python test set. This appears
331 to be a bug in the AIX compiler. Rebuild Parser/tokenizer.c
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000332 using OPT="" or OPT=-g, or use gcc. According to the latest
333 reports, it seems this compiler bug is still present in 4.2.1.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000334
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000335Minix: When using ack, use "CC=cc AR=aal RANLIB=: ./configure"!
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000336
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000337SCO: 1) Everything works much better if you add -U__STDC__ to the
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000338 defs. This is because all the SCO header files are broken.
Guido van Rossum64773801997-11-26 17:07:02 +0000339 Anything that isn't mentioned in the C standard is
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000340 conditionally excluded when __STDC__ is defined.
341
342 2) Due to the U.S. export restrictions, SCO broke the crypt
343 stuff out into a separate library, libcrypt_i.a so the LIBS
344 needed be set to:
345
346 LIBS=' -lsocket -lcrypt_i'
347
Guido van Rossuma3b4b611996-07-21 02:48:16 +0000348 3) According to at least one report, the above apply only to
349 SCO 3 -- Python builds out of the box on SCO 5.
350
Guido van Rossum64773801997-11-26 17:07:02 +0000351SunOS 4.x: When using the standard "cc" compiler, certain modules may
352
353 not be compilable because they use non-K&R syntax. You should
354 be able to get a basic Python interpreter by commenting out
355 such modules in the Modules/Setup file, but I really recommend
356 using gcc.
357
358 When using the SunPro C compiler, you may want to use the
359 '-Xa' option instead of '-Xc', to enable some needed non-ANSI
360 Sunisms.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000361
Guido van Rossumcc55c2d1996-10-21 15:14:27 +0000362NeXT: To build fat binaries, use the --with-next-archs switch
363 described below.
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000364
Guido van Rossumb7f454d1997-12-02 19:44:31 +0000365QNX: Chris Herborth (chrish@qnx.com) writes:
366 configure works best if you use GNU bash; a port is available on
367 ftp.qnx.com in /usr/free. I used the following process to build,
368 test and install Python 1.5 under QNX:
369
Guido van Rossumb1d368c1997-12-17 21:08:34 +0000370 1) SHELL=/usr/local/bin/bash CC=cc CFLAGS="-5 -O" RANLIB=: \
Guido van Rossumb7f454d1997-12-02 19:44:31 +0000371 bash ./configure --verbose --without-gcc --with-libm=""
372
373 2) copy Modules/Setup.in to Modules/Setup; edit Modules/Setup to
374 activate everything that makes sense for your system... tested
375 here at QNX with the following modules:
376
377 regex reop pcre posix signal readline array cmath math strop
378 struct time operator _locale fcntl pwd grp crypt select socket
379 errno termios audioop imageop rgbimg md5 timing rotor syslog
Guido van Rossumb1d368c1997-12-17 21:08:34 +0000380 new gdbm soundex binascii parser cStringIO cPickle zlib curses
Guido van Rossumb7f454d1997-12-02 19:44:31 +0000381
382 3) SHELL=/usr/local/bin/bash make SHELL=/usr/local/bin/bash
383
384 4) SHELL=/usr/local/bin/bash make SHELL=/usr/local/bin/bash test
385
386 The socket, strftime and possibly gdbm tests might fail in the
387 test harness; going through them by hand shows that they work.
388 A good exercise for the reader: make these work "out of the box".
389
390 5) SHELL=/usr/local/bin/bash make SHELL=/usr/local/bin/bash install
391
392 If you get SIGSEGVs while running Python (I haven't yet, but I've
393 only run small programs and the test cases), you're probably running
394 out of stack; the default 32k could be a little tight. To increase
395 the stack size, edit the Makefile in the Modules directory to read:
Guido van Rossum40d63581997-08-14 19:45:30 +0000396 LDFLAGS = -N 48k
397
Guido van Rossum1bf0bf41997-08-20 23:50:51 +0000398Cray T3E: Konrad Hinsen writes:
399 1) Don't use gcc. It compiles Python/graminit.c into something that
400 the Cray assembler doesn't like. Cray's cc seems to work fine.
401 2) Uncomment modules md5 (won't compile) and audioop (will crash
402 the interpreter during the test suite).
403 If you run the test suite, two tests will fail (rotate and binascii),
404 but these are not the modules you'd expect to need on a Cray.
405
Guido van Rossum0078aaf1997-08-21 03:05:11 +0000406SGI: SGI's standard "make" utility (/bin/make or /usr/bin/make)
407 does not check whether a command actually changed the file it
408 is supposed to build. This means that whenever you say "make"
409 it will redo the link step. The remedy is to use SGI's much
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000410 smarter "smake " utility (/usr/sbin/smake), or GNU make. If
411 you set the first line of the Makefile to #!/usr/sbin/smake
412 smake will be invoked by make (likewise for GNU make).
Guido van Rossum0078aaf1997-08-21 03:05:11 +0000413
Guido van Rossum64773801997-11-26 17:07:02 +0000414OS/2: If you are running Warp3 or Warp4 and have IBM's VisualAge C/C++
415 compiler installed, just change into the pc\os2vacpp directory
416 and type NMAKE. Threading and sockets are supported by default
417 in the resulting binaries of PYTHON15.DLL and PYTHON.EXE.
418
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000419
420Configuring additional built-in modules
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000421---------------------------------------
Guido van Rossum19e0c261995-01-17 16:36:34 +0000422
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000423You can configure the interpreter to contain fewer or more built-in
424modules by editing the file Modules/Setup. This file is initially
425copied (when the toplevel Makefile makes Modules/Makefile for the
426first time) from Setup.in; if it does not exist yet, make a copy
427yourself. Never edit Setup.in -- always edit Setup. Read the
428comments in the file for information on what kind of edits you can
429make. When you have edited Setup, Makefile and config.c in Modules
430will automatically be rebuilt the next time you run make in the
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000431toplevel directory. (When working inside the Modules directory, use
432"make Makefile; make".)
Guido van Rossum627b2d71993-12-24 10:39:16 +0000433
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000434The default collection of modules should build on any Unix system, but
435many optional modules should work on all modern Unices (e.g. try dbm,
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000436nis, termios, timing, syslog, curses, new, soundex, parser). Often
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000437the quickest way to determine whether a particular module works or not
438is to see if it will build: enable it in Setup, then if you get
439compilation or link errors, disable it -- you're missing support.
440
441On SGI IRIX, there are modules that interface to many SGI specific
442system libraries, e.g. the GL library and the audio hardware.
443
444For SunOS and Solaris, enable module "sunaudiodev" to support the
445audio device.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000446
Guido van Rossum4462e931997-01-22 21:00:32 +0000447In addition to the file Setup, you can also edit the file Setup.local.
448(the makesetup script processes both). You may find it more
449convenient to edit Setup.local and leave Setup alone. Then, when
450installing a new Python version, you can copy your old Setup.local
451file.
452
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000453
454Setting the optimization/debugging options
455------------------------------------------
456
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000457If you want or need to change the optimization/debugging options for
458the C compiler, assign to the OPT variable on the toplevel make
459command; e.g. "make OPT=-g" will build a debugging version of Python
460on most platforms. The default is OPT=-O; a value for OPT in the
461environment when the configure script is run overrides this default
462(likewise for CC; and the initial value for LIBS is used as the base
463set of libraries to link with).
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000464
465
466Testing
467-------
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000468
469To test the interpreter that you have just built, type "make test".
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000470This runs the test set twice (once with no compiled files, once with
471the compiled files left by the previous test run). The test set
472produces some output. You can generally ignore the messages about
473skipped tests due to an optional feature that can't be imported (if
474you want to test those modules, edit Modules/Setup to configure them).
475If a messages is printed about a failed test or a traceback or core
Guido van Rossum24df6841997-12-30 04:32:30 +0000476dump is produced, something's wrong. On some Linux systems (those
477that are not yet using glibc 6), test_strftime fails due to a
478non-standard-compliant implementation of strftime() in the C library.
479Please ignore this, or upgrade to glibc version 6.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000480
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000481IMPORTANT: If the tests fail and you decide to mail a bug report,
482*don't* include the output of "make test". It is useless. Run the
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000483test that fails manually, as follows:
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000484
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000485 python ../Lib/test/test_whatever.py
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000486
487(substituting the top of the source tree for .. if you built in a
Guido van Rossum6ae5d3d1997-05-14 21:39:05 +0000488different directory). This runs the test in verbose mode.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000489
490
491Installing
492----------
493
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000494To install the Python binary, library modules, shared library modules
495(see below), include files, configuration files, and the manual page,
Guido van Rossum64773801997-11-26 17:07:02 +0000496just type
497
498 make install
499
500This will install all platform-independent files in subdirectories the
501directory given with the --prefix option to configure or the 'prefix'
502Make variable (default /usr/local), and all binary and other
503platform-specific files in subdirectories if the directory given by
504--exec-prefix or the 'exec_prefix' Make variable (defaults to the
505--prefix directory).
506
507All subdirectories created will have Python's version number in their
508name, e.g. the library modules are installed in
509"/usr/local/lib/python1.5/" by default. The Python binary is
510installed as "python1.5" and a hard link named "python" is created.
511The only file not installed with a version number in its name is the
512manual page, installed as "/usr/local/man/man1/python.1" by default.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000513
Guido van Rossum49523691997-08-15 18:30:14 +0000514If you have a previous installation of a pre-1.5 Python that you don't
Guido van Rossum64773801997-11-26 17:07:02 +0000515want to replace yet, use
516
517 make altinstall
518
519This installs the same set of files as "make install" except it
520doesn't create the hard link to "python1.5" named "python" and it
521doesn't install the manual page at all.
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000522
523The only thing you may have to install manually is the Python mode for
524Emacs. (But then again, more recent versions of Emacs may already
525have it!) This is the file Misc/python-mode.el; follow the
526instructions that came with Emacs for installation of site specific
527files.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000528
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000529
530Configuration options and variables
531-----------------------------------
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000532
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000533Some special cases are handled by passing options to the configure
534script.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000535
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000536WARNING: if you rerun the configure script with different options, you
537must run "make clean" before rebuilding. Exceptions to this rule:
538after changing --prefix or --exec-prefix, all you need to do is remove
Guido van Rossumb06df271997-08-05 21:50:20 +0000539Modules/getpath.o.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000540
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000541--with(out)-gcc: The configure script uses gcc (the GNU C compiler) if
542 it finds it. If you don't want this, or if this compiler is
543 installed but broken on your platform, pass the option
544 --without-gcc. You can also pass "CC=cc" (or whatever the
545 name of the proper C compiler is) in the environment, but the
546 advantage of using --without-gcc is that this option is
547 remembered by the config.status script for its --recheck
548 option.
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000549
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000550--prefix, --exec-prefix: If you want to install the binaries and the
551 Python library somewhere else than in /usr/local/{bin,lib},
552 you can pass the option --prefix=DIRECTORY; the interpreter
553 binary will be installed as DIRECTORY/bin/python and the
554 library files as DIRECTORY/lib/python/*. If you pass
555 --exec-prefix=DIRECTORY (as well) this overrides the
556 installation prefix for architecture-dependent files (like the
557 interpreter binary). Note that --prefix=DIRECTORY also
558 affects the default module search path (sys.path), when
559 Modules/config.c is compiled. Passing make the option
560 prefix=DIRECTORY (and/or exec_prefix=DIRECTORY) overrides the
561 prefix set at configuration time; this may be more convenient
562 than re-running the configure script if you change your mind
563 about the install prefix...
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000564
Guido van Rossumb06df271997-08-05 21:50:20 +0000565--with-readline: This option is no longer supported. To use GNU
566 readline, enable module "readline" in the Modules/Setup file.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000567
Guido van Rossumfaf681a1996-06-20 14:32:08 +0000568--with-thread: On most Unix systems, you can now use multiple threads.
Guido van Rossum4462e931997-01-22 21:00:32 +0000569 To enable this, pass --with-thread. (--with-threads is an
570 alias.) If the library required for threads lives in a
Guido van Rossum8d90f9d1997-05-22 20:13:25 +0000571 peculiar place, you can use --with-thread=DIRECTORY. NOTE:
572 you must also enable the thread module by uncommenting it in
573 the Modules/Setup file. (Threads aren't enabled automatically
574 because there are run-time penalties when support for them is
575 compiled in even if you don't use them.) IMPORTANT: run "make
576 clean" after changing (either enabling or disabling) this
577 option! Note: for DEC Unix use --with-dec-threads instead.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000578
579--with-sgi-dl: On SGI IRIX 4, dynamic loading of extension modules is
580 supported by the "dl" library by Jack Jansen, which is
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000581 ftp'able from ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000582 This is enabled (after you've ftp'ed and compiled the dl
583 library!) by passing --with-sgi-dl=DIRECTORY where DIRECTORY
584 is the absolute pathname of the dl library. (Don't bother on
585 IRIX 5, it already has dynamic linking using SunOS style
586 shared libraries.) Support for this feature is deprecated.
587
588--with-dl-dld: Dynamic loading of modules is rumoured to be supported
589 on some other systems: VAX (Ultrix), Sun3 (SunOS 3.4), Sequent
590 Symmetry (Dynix), and Atari ST. This is done using a
591 combination of the GNU dynamic loading package
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000592 (ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z) and an
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000593 emulation of the SGI dl library mentioned above (the emulation
594 can be found at
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000595 ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z). To
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000596 enable this, ftp and compile both libraries, then call the
597 configure passing it the option
598 --with-dl-dld=DL_DIRECTORY,DLD_DIRECTORY where DL_DIRECTORY is
599 the absolute pathname of the dl emulation library and
600 DLD_DIRECTORY is the absolute pathname of the GNU dld library.
601 (Don't bother on SunOS 4 or 5, they already have dynamic
602 linking using shared libraries.) Support for this feature is
603 deprecated.
604
605--with-libm, --with-libc: It is possible to specify alternative
606 versions for the Math library (default -lm) and the C library
607 (default the empty string) using the options
608 --with-libm=STRING and --with-libc=STRING, respectively. E.g.
609 if your system requires that you pass -lc_s to the C compiler
610 to use the shared C library, you can pass --with-libc=-lc_s.
611 These libraries are passed after all other libraries, the C
612 library last.
Guido van Rossum3ff96dd1996-07-30 18:05:04 +0000613
614--with-next-archs='arch1 arch2': Under NEXTSTEP, this will build
615 all compiled binaries with the architectures listed. Includes
616 correctly setting the target architecture specific resource
Guido van Rossumcc55c2d1996-10-21 15:14:27 +0000617 directory. (This option is not supported on other platforms.)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000618
Guido van Rossumd02ba451996-07-31 17:36:01 +0000619--with-libs='libs': Add 'libs' to the LIBS that the python
620 linked against.
621
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000622
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000623Building for multiple architectures (using the VPATH feature)
624-------------------------------------------------------------
625
626If your file system is shared between multiple architectures, it
627usually is not necessary to make copies of the sources for each
628architecture you want to support. If the make program supports the
629VPATH feature, you can create an empty build directory for each
630architecture, and in each directory run the configure script (on the
631appropriate machine with the appropriate options). This creates the
632necessary subdirectories and the Makefiles therein. The Makefiles
633contain a line VPATH=... which points to directory containing the
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000634actual sources. (On SGI systems, use "smake -J1" instead of "make" if
635you use VPATH -- don't try gnumake.)
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000636
637For example, the following is all you need to build a minimal Python
638in /usr/tmp/python (assuming ~guido/src/python is the toplevel
639directory and you want to build in /usr/tmp/python):
640
641 $ mkdir /usr/tmp/python
642 $ cd /usr/tmp/python
643 $ ~guido/src/python/configure
644 [...]
645 $ make
646 [...]
647 $
648
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000649Note that Modules/Makefile copies the original Setup file to the build
650directory if it finds no Setup file there. This means that you can
651edit the Setup file for each architecture independently. For this
652reason, subsequent changes to the original Setup file are not tracked
653automatically, as they might overwrite local changes. To force a copy
654of a changed original Setup file, delete the target Setup file. (The
655makesetup script supports multiple input files, so if you want to be
656fancy you can change the rules to create an empty Setup.local if it
657doesn't exist and run it with arguments $(srcdir)/Setup Setup.local;
658however this assumes that you only need to add modules.)
659
660
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000661Building on non-UNIX systems
662----------------------------
663
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000664Building Python for a PC is now a piece of cake!
Guido van Rossum8d7d4ed1996-07-30 21:41:07 +0000665
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000666Enter the directory "PC" and read the file "readme.txt". Most popular
667non-Unix PC platforms and compilers are supported (Unix ports to the
668PC such as Linux, FreeBSD or Solaris-x86 of course use the standard
669Unix build instructions).
670
671For the Mac, a separate source distribution will be made available,
672for use with the CodeWarrior compiler. If you are interested in Mac
673development, join the PythonMac Special Interest Group
674(http://www.python.org/sigs/pythonmac-sig/, or send email to
675pythonmac-sig-request@python.org).
676
677Of course, there are also binary distributions available for these
678platforms -- see http://www.python.org/python/.
679
680To port Python to a new non-UNIX system, you will have to fake the
681effect of running the configure script manually (for Mac and PC, this
682has already been done for you). A good start is to copy the file
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000683config.h.in to config.h and edit the latter to reflect the actual
684configuration of your system. Most symbols must simply be defined as
6851 only if the corresponding feature is present and can be left alone
686otherwise; however RETSIGTYPE must always be defined, either as int or
687as void, and the *_t type symbols must be defined as some variant of
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000688int if they need to be defined at all.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000689
690
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000691
692Miscellaneous issues
693====================
694
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000695Documentation
696-------------
697
698All documentation is provided in the subdirectory Doc in the form of
699LaTeX files. In order of importance for new users: Tutorial (tut),
700Library Reference (lib), Language Reference (ref), Extending (ext).
701Especially the Library Reference is of immense value since much of
702Python's power (including the built-in data types and functions!) is
703described here.
704
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000705To print the documentation from the LaTeX files, chdir into the Doc
706subdirectory, type "make" (let's hope you have LaTeX installed!), and
707send the four resulting PostScript files (tut.ps, lib.ps, ref.ps, and
708ext.ps) to the printer. See the README file there. If you don't have
709LaTeX, you can ftp the PostScript files from the ftp archives (see
710below).
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000711
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000712All documentation is also available on-line via the Python web site
713(http://www.python.org/, see below). It can also be downloaded
714separately from the ftp archives (see below) in Emacs INFO, HTML or
Guido van Rossum49523691997-08-15 18:30:14 +0000715PostScript form -- see the web site or the FAQ
716(http://grail.cnri.reston.va.us/cgi-bin/faqw.py or
717http://www.python.org/doc/FAQ.html) for more info.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000718
719
720Emacs mode
721----------
722
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000723There's an excellent Emacs editing mode for Python code; see the file
724Misc/python-mode.el. Originally written by the famous Tim Peters, it
725is now maintained by the equally famous Barry Warsaw
726<bwarsaw@cnri.reston.va.us>. The latest version is online at
727ftp://ftp.python.org/pub/emacs/python-mode.el. As you might expect of
728Barry (and even if you don't know what the heck I'm talking about :-),
729a configuration file for his cc-mode.el which selects the style used
730throughout most Python C source files is also provided; see the file
731Misc/ccpy-style.el.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000732
733
Guido van Rossum8d7d4ed1996-07-30 21:41:07 +0000734Web site
735--------
736
737Python's own web site has URL http://www.python.org/. Come visit us!
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000738There are a number of mirrors, listed on the home page -- try a mirror
739that's close you you.
Guido van Rossum8d7d4ed1996-07-30 21:41:07 +0000740
741
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000742Ftp site
743--------
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000744
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000745Python's own ftp site is ftp://ftp.python.org/pub/python/. There are
Guido van Rossum49523691997-08-15 18:30:14 +0000746numerous mirrors; see http://www.python.org/python/Mirrors.html for a
747list of mirror sites.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000748
749
750Newsgroup and mailing list
751--------------------------
752
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000753There are a newsgroup and a mailing list devoted to Python. The
754newsgroup, comp.lang.python, contains exactly the same messages as the
755mailing list (though not always in the same order, due to the
756mysterious nature of the Usenet news distribution algorithm). To
757subscribe to the mailing list, send mail containing your real name and
758e-mail address to "python-list-request@cwi.nl". Use the same address
759if you want to unsibscribed. (A real person reads these messages, so
760no LISTPROC or Majordomo commands, please, and please be patient --
761normal turn-around time is about one working day.)
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000762
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000763The Python web site contains a search form that lets you search the
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000764newsgroup archives (and the web site itself). Click on the "search"
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000765link in the banner menu on any page of http://www.python.org/.
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000766
767
768Bug reports
769-----------
770
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000771Bugs are best reported to the comp.lang.python newsgroup or the Python
Guido van Rossumcc55c2d1996-10-21 15:14:27 +0000772mailing list -- see the section "Newsgroup and mailing list" above.
Guido van Rossumdfcf35d1996-08-26 17:52:09 +0000773Before posting, check the newsgroup archives (see above) to see if
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000774your bug has already been reported! If you don't want to go public,
Guido van Rossum64773801997-11-26 17:07:02 +0000775send them to me: <guido@python.org>.
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000776
777
778Questions
779---------
780
Guido van Rossum49523691997-08-15 18:30:14 +0000781For help, if you can't find it in the manuals or on the web site, it's
782best to post to the comp.lang.python or the Python mailing list (see
783above). If you specifically don't want to involve the newsgroup or
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000784mailing list, send questions to <python-help@python.org> (a group of
785volunteers which does *not* include me). Because of my work and email
786volume, I'm often be slow in answering questions sent to me directly;
787I prefer to answer questions posted to the newsgroup.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000788
789
790The Tk interface
791----------------
792
793Tk (the user interface component of John Ousterhout's Tcl language) is
794also usable from Python. Since this requires that you first build and
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000795install Tcl/Tk, the Tk interface is not enabled by default. Python
796supports all Tcl/Tk versions from version 7.5/4.1 through 8.0 (and it
797is expected that it will also work with newer versions). Tcl/Tk
Guido van Rossum64773801997-11-26 17:07:02 +00007987.4/4.0 is no longer supported. 8.0 or any later non-alpha non-beta
799release is recommended.
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000800
Guido van Rossum64773801997-11-26 17:07:02 +0000801See http://sunscript.sun.com/ for more info on Tcl/Tk, including the
802on-line manual pages.
803
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000804
805To enable the Python/Tk interface, once you've built and installed
Guido van Rossum64773801997-11-26 17:07:02 +0000806Tcl/Tk, load the file Modules/Setup in your favorite text editor and
807search for the string "_tkinter". Then follow the instructions found
808there. If you have installed Tcl/Tk or X11 in unusual places, you
809will have to edit the first line to fix or add -I and -L options.
810(Also see the general instructions at the top of that file.)
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000811
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000812There is little documentation on how to use Tkinter; however most of
813the Tk manual pages apply quite straightforwardly. Begin with
814fetching the "Tk Lifesaver" document,
815e.g. ftp://ftp.python.org/pub/python/doc/tkinter-doc.tar.gz (a gzipped
816tar file containing a PostScript file) or the on-line version
817http://www.python.org/doc/life-preserver/index.html. Reading the
818Tkinter.py source will reveal most details on how Tkinter calls are
819translated into Tcl code.
820
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000821A more recent introduction to Tkinter programming, by Fredrik Lundh,
822is at http://www.pythonware.com/library/tkinter/introduction/index.htm.
823
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000824There are demos in the Demo/tkinter directory, in the subdirectories
825guido, matt and www (the matt and guido subdirectories have been
826overhauled to use more recent Tkinter coding conventions).
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000827
828Note that there's a Python module called "Tkinter" (capital T) which
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000829lives in Lib/tkinter/Tkinter.py, and a C module called "_tkinter"
830(lower case t and leading underscore) which lives in
831Modules/_tkinter.c. Demos and normal Tk applications only import the
832Python Tkinter module -- only the latter uses the C _tkinter module
833directly. In order to find the C _tkinter module, it must be compiled
834and linked into the Python interpreter -- the _tkinter line in the
835Setup file does this. In order to find the Python Tkinter module,
836sys.path must be set correctly -- the TKPATH assignment in the Setup
837file takes care of this, but only if you install Python properly
838("make install libinstall"). (You can also use dynamic loading for
839the C _tkinter module, in which case you must manually fix up sys.path
840or set $PYTHONPATH for the Python Tkinter module.)
Guido van Rossum84c8c7f1995-08-28 02:44:24 +0000841
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000842
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000843Distribution structure
844----------------------
845
846Most subdirectories have their own README file. Most files have
847comments.
848
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000849Demo/ Demonstration scripts, modules and programs
850Doc/ Documentation (LaTeX sources)
851Grammar/ Input for the parser generator
852Include/ Public header files
853Lib/ Python library modules
854Makefile.in Source from which config.status creates Makefile
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000855Misc/ Miscellaneous useful files
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000856Modules/ Implementation of most built-in modules
857Objects/ Implementation of most built-in object types
Guido van Rossum64773801997-11-26 17:07:02 +0000858PC/ PC porting files (DOS, Windows, OS/2)
859PCbuild/ Directory where you should build for Windows NT/95
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000860Parser/ The parser and tokenizer and their input handling
861Python/ The "compiler" and interpreter
862README The file you're reading now
863Tools/ Some useful programs written in Python
864acconfig.h Additional input for the autoheader program
865config.h.in Source from which config.status creates config.h
866configure Configuration shell script (GNU autoconf output)
867configure.in Configuration specification (GNU autoconf input)
868install-sh Shell script used to install files
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000869
870The following files will (may) be created in the toplevel directory by
871the configuration and build processes:
872
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000873Makefile Build rules
874config.cache cache of configuration variables
875config.h Configuration header
Guido van Rossumc0be2f51997-10-08 05:05:28 +0000876config.log Log from last configure run
877config.status Status from last run of configure script
878libpython1.5.a The library archive
Guido van Rossum6d9cc801996-08-01 17:31:22 +0000879python The executable interpreter
880tags, TAGS Tags files for vi and Emacs
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000881
882
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000883Author's address
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000884================
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000885
886Guido van Rossum
Guido van Rossumfaf681a1996-06-20 14:32:08 +0000887CNRI
8881895 Preston White Drive
Guido van Rossum8d7d4ed1996-07-30 21:41:07 +0000889Reston, VA 20191
Guido van Rossumfaf681a1996-06-20 14:32:08 +0000890USA
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000891
Guido van Rossumd0fe8451996-08-26 03:02:37 +0000892E-mail: guido@cnri.reston.va.us or guido@python.org
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000893
894
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000895
896Copyright notice
897================
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000898
899The Python source is copyrighted, but you can freely use and copy it
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000900as long as you don't change or remove the copyright notice:
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000901
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000902----------------------------------------------------------------------
Guido van Rossumaf5b83e1995-01-04 19:02:35 +0000903Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
904The Netherlands.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000905
906 All Rights Reserved
907
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000908Permission to use, copy, modify, and distribute this software and its
909documentation for any purpose and without fee is hereby granted,
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000910provided that the above copyright notice appear in all copies and that
Guido van Rossumc561e5d1994-08-23 13:52:46 +0000911both that copyright notice and this permission notice appear in
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000912supporting documentation, and that the names of Stichting Mathematisch
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000913Centrum or CWI or Corporation for National Research Initiatives or
914CNRI not be used in advertising or publicity pertaining to
915distribution of the software without specific, written prior
916permission.
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000917
Guido van Rossumf501b4e1996-10-25 14:32:48 +0000918While CWI is the initial source for this software, a modified version
919is made available by the Corporation for National Research Initiatives
920(CNRI) at the Internet address ftp://ftp.python.org.
921
922STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
923REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
924MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
925CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
926DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
927PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
928TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
929PERFORMANCE OF THIS SOFTWARE.
Guido van Rossum91cb9d21995-04-10 11:47:38 +0000930----------------------------------------------------------------------
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000931
932
Guido van Rossumfaf681a1996-06-20 14:32:08 +0000933--Guido van Rossum (home page: http://www.python.org/~guido/)