Guido van Rossum | 9e47859 | 1999-04-13 14:47:26 +0000 | [diff] [blame] | 1 | This is Python version 1.5.2 -- released April 13, 1999 |
| 2 | ======================================================= |
Guido van Rossum | 7980826 | 1997-12-11 18:01:47 +0000 | [diff] [blame] | 3 | |
| 4 | |
Guido van Rossum | 8d7d4ed | 1996-07-30 21:41:07 +0000 | [diff] [blame] | 5 | What's new in this release? |
| 6 | --------------------------- |
Guido van Rossum | 3ff96dd | 1996-07-30 18:05:04 +0000 | [diff] [blame] | 7 | |
Guido van Rossum | 126cbfa | 1999-02-18 16:04:35 +0000 | [diff] [blame] | 8 | See the Misc/NEWS file. |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 9 | |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 10 | |
| 11 | If you don't read instructions |
| 12 | ------------------------------ |
| 13 | |
| 14 | Congratulations on getting this far. :-) |
| 15 | |
| 16 | To start building right away (on UNIX): type "./configure" in the |
| 17 | current directory and when it finishes, type "make". The section |
| 18 | Build Instructions below is still recommended reading. :-) |
Guido van Rossum | 3ff96dd | 1996-07-30 18:05:04 +0000 | [diff] [blame] | 19 | |
| 20 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 21 | What is Python anyway? |
| 22 | ---------------------- |
| 23 | |
| 24 | Python is an interpreted object-oriented programming language, and is |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 25 | often compared to Tcl, Perl, Java or Scheme. To find out more, point |
| 26 | your browser to http://www.python.org/. |
| 27 | |
| 28 | |
| 29 | A modest plug |
| 30 | ------------- |
| 31 | |
| 32 | ************************************************************************ |
| 33 | * Without your support, I won't be able to continue to work on Python! * |
| 34 | ************************************************************************ |
| 35 | |
| 36 | If you use Python, please consider joining the Python Software |
| 37 | Activity (PSA). See http://www.python.org/psa/. |
| 38 | |
| 39 | Organizations that make heavy use of Python are especially encouraged |
Guido van Rossum | de64eaf | 1998-10-17 19:44:20 +0000 | [diff] [blame] | 40 | to become corporate members -- or better still, to join the Python |
| 41 | Consortium (see http://www.python.org/consortium/). |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 42 | |
| 43 | |
Guido van Rossum | f501b4e | 1996-10-25 14:32:48 +0000 | [diff] [blame] | 44 | How do I learn Python? |
| 45 | ---------------------- |
| 46 | |
Fred Drake | 0e6444c | 1999-05-17 19:35:01 +0000 | [diff] [blame] | 47 | The official tutorial is still a good place to start; see |
| 48 | http://www.python.org/doc/ for online and downloadable versions. |
Guido van Rossum | f501b4e | 1996-10-25 14:32:48 +0000 | [diff] [blame] | 49 | Aaron Watters wrote a second tutorial, that may be more accessible for |
Guido van Rossum | 2aeba70 | 1999-04-08 20:42:11 +0000 | [diff] [blame] | 50 | some: http://www.networkcomputing.com/unixworld/tutorial/005/005.html. |
| 51 | Both tutorials (as well as most other sources) assume that you already |
| 52 | know how to program -- if you'd like to write "Python for Dummies", I |
| 53 | know a publisher who would like to talk to you... |
Guido van Rossum | f501b4e | 1996-10-25 14:32:48 +0000 | [diff] [blame] | 54 | |
Fred Drake | 0e6444c | 1999-05-17 19:35:01 +0000 | [diff] [blame] | 55 | There are now also several books on Python. The first book is the |
| 56 | most recent and covers Python 1.5.X. The other two books, both |
| 57 | first published in October 1996 and both including a CD-ROM, form |
| 58 | excellent companions to each other. Though these two are still based |
| 59 | on Python 1.3 or 1.4, the information in them is still 99% correct. |
| 60 | |
| 61 | Learning Python |
| 62 | by Mark Lutz and David Ascher |
| 63 | O'Reilly & Associates |
| 64 | ISBN: 1-56592-464-9 |
Guido van Rossum | f501b4e | 1996-10-25 14:32:48 +0000 | [diff] [blame] | 65 | |
| 66 | Internet Programming with Python |
| 67 | by Aaron Watters, Guido van Rossum, and James Ahlstrom |
| 68 | MIS Press/Henry Holt publishers |
| 69 | ISBN: 1-55851-484-8 |
| 70 | |
| 71 | Programming Python |
| 72 | by Mark Lutz |
| 73 | O'Reilly & Associates |
| 74 | ISBN: 1-56592-197-6 |
| 75 | |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 76 | If you can read German, try: |
Guido van Rossum | 8d90f9d | 1997-05-22 20:13:25 +0000 | [diff] [blame] | 77 | |
| 78 | Das Python-Buch |
| 79 | by Martin von Loewis and Nils Fischbeck |
| 80 | Addison-Wesley-Longman, 1997 |
| 81 | ISBN: 3-8273-1110-1 |
| 82 | |
Guido van Rossum | f501b4e | 1996-10-25 14:32:48 +0000 | [diff] [blame] | 83 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 84 | Copyright issues |
| 85 | ---------------- |
| 86 | |
| 87 | Python is COPYRIGHTED but free to use for all. See the full copyright |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 88 | notice at the end of this file and in the file Misc/COPYRIGHT. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 89 | |
| 90 | The Python distribution is *not* affected by the GNU Public Licence |
| 91 | (GPL). There are interfaces to some GNU code but these are entirely |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 92 | optional and no GNU code is distributed with Python. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 93 | |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 94 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 95 | Build instructions |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 96 | ================== |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 97 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 98 | Before you can build Python, you must first configure it. |
| 99 | Fortunately, the configuration and build process has been streamlined |
| 100 | for most Unix installations, so all you have to do is type a few |
| 101 | commands, optionally edit one file, and sit back. There are some |
| 102 | platforms where things are not quite as smooth; see the platform |
| 103 | specific notes below. If you want to build for multiple platforms |
| 104 | sharing the same source tree, see the section on VPATH below. |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 105 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 106 | You start by running the script "./configure", which figures out your |
| 107 | system configuration and creates several Makefiles. (It takes a |
| 108 | minute or two -- please be patient!) When it's done, you are ready to |
| 109 | run make. You may want to pass options to the configure script -- see |
| 110 | the section below on configuration options and variables. |
| 111 | |
| 112 | To build Python, you normally type "make" in the toplevel directory. |
| 113 | This will recursively run make in each of the subdirectories Parser, |
| 114 | Objects, Python and Modules, creating a library file in each one. The |
| 115 | executable of the interpreter is built in the Modules subdirectory and |
| 116 | moved up here when it is built. If you want or need to, you can also |
| 117 | chdir into each subdirectory in turn and run make there manually (do |
| 118 | the Modules subdirectory last!). |
| 119 | |
| 120 | Once you have built an interpreter, see the subsections below on |
| 121 | testing, configuring additional modules, and installation. If you run |
| 122 | in trouble, see the next section. |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 123 | |
Guido van Rossum | 0a516c9 | 1994-09-12 10:58:40 +0000 | [diff] [blame] | 124 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 125 | Troubleshooting |
| 126 | --------------- |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 127 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 128 | See also the platform specific notes in the next section. |
| 129 | |
Guido van Rossum | faf681a | 1996-06-20 14:32:08 +0000 | [diff] [blame] | 130 | If recursive makes fail, try invoking make as "make MAKE=make". |
| 131 | |
Guido van Rossum | 4952369 | 1997-08-15 18:30:14 +0000 | [diff] [blame] | 132 | If you run into other trouble, see section 3 of the FAQ |
| 133 | (http://grail.cnri.reston.va.us/cgi-bin/faqw.py or |
| 134 | http://www.python.org/doc/FAQ.html) for hints on what can go wrong, |
| 135 | and how to fix it. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 136 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 137 | If you rerun the configure script with different options, remove all |
| 138 | object files by running "make clean" before rebuilding. Believe it or |
| 139 | not, "make clean" sometimes helps to clean up other inexplicable |
| 140 | problems as well. Try it before sending in a bug report! |
| 141 | |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 142 | If the configure script fails or doesn't seem to find things that |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 143 | should be there, inspect the config.log file. When you fix a |
| 144 | configure problem, be sure to remove config.cache! |
| 145 | |
| 146 | If you get a warning for every file about the -Olimit option being no |
| 147 | longer supported, you can ignore it. There's no foolproof way to know |
| 148 | whether this option is needed; all I can do is test whether it is |
| 149 | accepted without error. On some systems, e.g. older SGI compilers, it |
| 150 | is essential for performance (specifically when compiling ceval.c, |
| 151 | which has more basic blocks than the default limit of 1000). If the |
| 152 | warning bothers you, edit the Makefile to remove "-Olimit 1500" from |
| 153 | the OPT variable. |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 154 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 155 | |
| 156 | Platform specific notes |
| 157 | ----------------------- |
| 158 | |
Guido van Rossum | 0447a32 | 1995-10-08 01:22:33 +0000 | [diff] [blame] | 159 | (Some of these may no longer apply. If you find you can build Python |
| 160 | on these platforms without the special directions mentioned here, let |
| 161 | me know so I can remove them!) |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 162 | |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 163 | 64-bit platforms: The modules audioop, imageop and rgbimg don't work. |
| 164 | Don't try to enable them in the Modules/Setup file. They |
| 165 | contain code that is quite wordsize sensitive. (If you have a |
| 166 | fix, let me know!) |
| 167 | |
Guido van Rossum | 4462e93 | 1997-01-22 21:00:32 +0000 | [diff] [blame] | 168 | Solaris: When using Sun's C compiler with threads, at least on Solaris |
| 169 | 2.5.1, you need to add the "-mt" compiler option (the simplest |
| 170 | way is probably to specify the compiler with this option as |
| 171 | the "CC" environment variable when running the configure |
| 172 | script). |
| 173 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 174 | Linux: On Linux version 1.x, once you've built Python, use it to run |
| 175 | the regen script in the Lib/linux1 directory. Apparently |
| 176 | the files as distributed don't match the system headers on |
| 177 | some Linux versions. (The "h2py" command refers to |
| 178 | Tools/scripts/h2py.py.) The modules distributed for Linux 2.x |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 179 | should be okay. Shared library support now works by default |
Guido van Rossum | 4462e93 | 1997-01-22 21:00:32 +0000 | [diff] [blame] | 180 | on ELF-based x86 Linux systems. (Note: when you change the |
| 181 | status of a module from static to shared, you must remove its |
| 182 | .o file or do a "make clean".) |
| 183 | |
Fred Drake | 6128091 | 1997-12-08 14:10:40 +0000 | [diff] [blame] | 184 | Under RedHat Linux 5.0, if upgraded from a previous version, |
| 185 | remove the LinuxThreads packages. This is needed because |
| 186 | LinuxThreads conflicts with the new thread support provided by |
| 187 | glibc. Before running Python's configure script, use the |
| 188 | following commands as root (version numbers may differ; these |
| 189 | are from a stock 4.2 install): |
| 190 | |
| 191 | % rpm -qa | grep ^linuxthread |
| 192 | linuxthreads-0.5-1 |
| 193 | linuxthreads-devel-0.5-1 |
| 194 | % rpm -e linuxthreads linuxthreads-devel |
| 195 | |
| 196 | While Python only needs this to be done to allow thread |
| 197 | support to be included, the conflicts these packages create |
| 198 | with the new glibc may cause other packages which use threads |
| 199 | to fail as well, so their removal is a good idea regardless of |
| 200 | how you configure python. |
| 201 | |
Guido van Rossum | fe23ad7 | 1999-04-12 19:01:45 +0000 | [diff] [blame] | 202 | More recently, a problem with threads and fork() was tracked |
| 203 | down to a bug in the pthreads code in glibc version 2.0.5; |
| 204 | glibc version 2.0.7 solves the problem. This causes the |
| 205 | popen2 test to fail; problem and solution reported by Pablo |
| 206 | Bleyer. |
| 207 | |
Fred Drake | 6128091 | 1997-12-08 14:10:40 +0000 | [diff] [blame] | 208 | Also under RedHat Linux 5.0, the crypt module now needs the |
| 209 | -lcrypt option. Uncomment this flag in Modules/Setup, or |
| 210 | comment out the crypt module in the same file. |
| 211 | |
Guido van Rossum | 5923050 | 1999-06-21 20:51:46 +0000 | [diff] [blame] | 212 | FreeBSD 3.x and probably platforms with NCurses that use libmytinfo or |
| 213 | similar: When using cursesmodule, the linking is not done in |
| 214 | the correct order with the defaults. Remove "-ltermcap" from |
| 215 | the readline entry in Setup, and use as curses entry: "curses |
| 216 | cursesmodule.c -lmytinfo -lncurses -ltermcap" - "mytinfo" (so |
| 217 | called on FreeBSD) should be the name of the auxiliary library |
| 218 | required on your platform. Normally, it would be linked |
| 219 | automatically, but not necessarily in the correct order. |
| 220 | |
Guido van Rossum | 6ae5d3d | 1997-05-14 21:39:05 +0000 | [diff] [blame] | 221 | DEC Unix: When enabling threads, use --with-dec-threads, not |
Guido van Rossum | 9ac9a26 | 1998-02-16 22:19:21 +0000 | [diff] [blame] | 222 | --with-thread. When using GCC, it is possible to get an |
| 223 | internal compiler error if optimization is used. This was |
| 224 | reported for GCC 2.7.2.3 on selectmodule.c. Manually compile |
| 225 | the affected file without optimization to solve the problem. |
Guido van Rossum | 8eca2c2 | 1996-02-14 18:37:46 +0000 | [diff] [blame] | 226 | |
Guido van Rossum | e1cdb16 | 1999-04-10 16:04:07 +0000 | [diff] [blame] | 227 | DEC Ultrix: compile with GCC to avoid bugs in the native compiler, |
| 228 | and pass SHELL=/bin/sh5 to Make when installing. |
| 229 | |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 230 | AIX: A complete overhaul of the shared library support is now in |
Guido van Rossum | cbfcb17 | 1997-10-20 22:57:00 +0000 | [diff] [blame] | 231 | place. See Misc/AIX-NOTES for some notes on how it's done. |
Guido van Rossum | 9ac9a26 | 1998-02-16 22:19:21 +0000 | [diff] [blame] | 232 | (The optimizer bug reported at this place in previous releases |
| 233 | has been worked around by a minimal code change.) |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 234 | |
Guido van Rossum | 59a88f4 | 1999-04-12 18:16:09 +0000 | [diff] [blame] | 235 | HP-UX: Please read the file Misc/HPUX-NOTES for shared libraries. |
| 236 | When using threading, you may have to add -D_REENTRANT to the |
| 237 | OPT variable in the top-level Makefile; reported by Pat Knight |
| 238 | this seems to make a difference (at least for HP-UX 10.20) |
| 239 | even though config.h defines it. |
Guido van Rossum | 2094e04 | 1998-05-14 15:47:35 +0000 | [diff] [blame] | 240 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 241 | Minix: When using ack, use "CC=cc AR=aal RANLIB=: ./configure"! |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 242 | |
Guido van Rossum | a16e275 | 1998-04-13 20:14:05 +0000 | [diff] [blame] | 243 | SCO: The following only apply to SCO 3; Python builds out of the box |
| 244 | on SCO 5 (or so I've heard). |
| 245 | |
| 246 | 1) Everything works much better if you add -U__STDC__ to the |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 247 | defs. This is because all the SCO header files are broken. |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 248 | Anything that isn't mentioned in the C standard is |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 249 | conditionally excluded when __STDC__ is defined. |
| 250 | |
| 251 | 2) Due to the U.S. export restrictions, SCO broke the crypt |
| 252 | stuff out into a separate library, libcrypt_i.a so the LIBS |
| 253 | needed be set to: |
| 254 | |
| 255 | LIBS=' -lsocket -lcrypt_i' |
| 256 | |
Guido van Rossum | a16e275 | 1998-04-13 20:14:05 +0000 | [diff] [blame] | 257 | SunOS 4.x: When using the standard "cc" compiler, certain modules may |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 258 | not be compilable because they use non-K&R syntax. You should |
| 259 | be able to get a basic Python interpreter by commenting out |
| 260 | such modules in the Modules/Setup file, but I really recommend |
| 261 | using gcc. |
| 262 | |
| 263 | When using the SunPro C compiler, you may want to use the |
| 264 | '-Xa' option instead of '-Xc', to enable some needed non-ANSI |
| 265 | Sunisms. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 266 | |
Guido van Rossum | cc55c2d | 1996-10-21 15:14:27 +0000 | [diff] [blame] | 267 | NeXT: To build fat binaries, use the --with-next-archs switch |
| 268 | described below. |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 269 | |
Guido van Rossum | b7f454d | 1997-12-02 19:44:31 +0000 | [diff] [blame] | 270 | QNX: Chris Herborth (chrish@qnx.com) writes: |
| 271 | configure works best if you use GNU bash; a port is available on |
| 272 | ftp.qnx.com in /usr/free. I used the following process to build, |
Guido van Rossum | d449342 | 1998-12-22 16:37:01 +0000 | [diff] [blame] | 273 | test and install Python 1.5.x under QNX: |
Guido van Rossum | b7f454d | 1997-12-02 19:44:31 +0000 | [diff] [blame] | 274 | |
Guido van Rossum | ec95c7b | 1998-08-04 17:59:56 +0000 | [diff] [blame] | 275 | 1) CONFIG_SHELL=/usr/local/bin/bash CC=cc RANLIB=: \ |
| 276 | ./configure --verbose --without-gcc --with-libm="" |
Guido van Rossum | b7f454d | 1997-12-02 19:44:31 +0000 | [diff] [blame] | 277 | |
| 278 | 2) copy Modules/Setup.in to Modules/Setup; edit Modules/Setup to |
| 279 | activate everything that makes sense for your system... tested |
| 280 | here at QNX with the following modules: |
| 281 | |
Guido van Rossum | 6fa49e2 | 1998-08-11 17:31:39 +0000 | [diff] [blame] | 282 | array, audioop, binascii, cPickle, cStringIO, cmath, |
| 283 | crypt, curses, errno, fcntl, gdbm, grp, imageop, |
| 284 | _locale, math, md5, new, operator, parser, pcre, |
| 285 | posix, pwd, readline, regex, reop, rgbimg, rotor, |
| 286 | select, signal, socket, soundex, strop, struct, |
Guido van Rossum | d449342 | 1998-12-22 16:37:01 +0000 | [diff] [blame] | 287 | syslog, termios, time, timing, zlib, audioop, imageop, rgbimg |
Guido van Rossum | b7f454d | 1997-12-02 19:44:31 +0000 | [diff] [blame] | 288 | |
Guido van Rossum | ec95c7b | 1998-08-04 17:59:56 +0000 | [diff] [blame] | 289 | 3) make SHELL=/usr/local/bin/bash |
| 290 | |
| 291 | or, if you feel the need for speed: |
| 292 | |
| 293 | make SHELL=/usr/local/bin/bash OPT="-5 -Oil+nrt" |
Guido van Rossum | b7f454d | 1997-12-02 19:44:31 +0000 | [diff] [blame] | 294 | |
Guido van Rossum | ec95c7b | 1998-08-04 17:59:56 +0000 | [diff] [blame] | 295 | 4) make SHELL=/usr/local/bin/bash test |
| 296 | |
Guido van Rossum | 6fa49e2 | 1998-08-11 17:31:39 +0000 | [diff] [blame] | 297 | Using GNU readline 2.2 seems to behave strangely, but I |
| 298 | think that's a problem with my readline 2.2 port. :-\ |
Guido van Rossum | ec95c7b | 1998-08-04 17:59:56 +0000 | [diff] [blame] | 299 | |
| 300 | 5) make SHELL=/usr/local/bin/bash install |
Guido van Rossum | b7f454d | 1997-12-02 19:44:31 +0000 | [diff] [blame] | 301 | |
Guido van Rossum | 6fa49e2 | 1998-08-11 17:31:39 +0000 | [diff] [blame] | 302 | If you get SIGSEGVs while running Python (I haven't yet, but |
| 303 | I've only run small programs and the test cases), you're |
| 304 | probably running out of stack; the default 32k could be a |
| 305 | little tight. To increase the stack size, edit the Makefile |
| 306 | in the Modules directory to read: LDFLAGS = -N 48k |
Guido van Rossum | 40d6358 | 1997-08-14 19:45:30 +0000 | [diff] [blame] | 307 | |
Guido van Rossum | ec95c7b | 1998-08-04 17:59:56 +0000 | [diff] [blame] | 308 | BeOS: Chris Herborth (chrish@qnx.com) writes: |
| 309 | See BeOS/README for notes about compiling/installing Python on |
Guido van Rossum | 6fa49e2 | 1998-08-11 17:31:39 +0000 | [diff] [blame] | 310 | BeOS R3 or later. Note that only the PowerPC platform is |
Guido van Rossum | d449342 | 1998-12-22 16:37:01 +0000 | [diff] [blame] | 311 | supported for R3; both PowerPC and x86 are supported for R4. |
Guido van Rossum | ec95c7b | 1998-08-04 17:59:56 +0000 | [diff] [blame] | 312 | |
Guido van Rossum | 1bf0bf4 | 1997-08-20 23:50:51 +0000 | [diff] [blame] | 313 | Cray T3E: Konrad Hinsen writes: |
Guido van Rossum | 6fa49e2 | 1998-08-11 17:31:39 +0000 | [diff] [blame] | 314 | 1) Don't use gcc. It compiles Python/graminit.c into something |
| 315 | that the Cray assembler doesn't like. Cray's cc seems to work |
| 316 | fine. |
| 317 | 2) Uncomment modules md5 (won't compile) and audioop (will |
| 318 | crash the interpreter during the test suite). |
| 319 | If you run the test suite, two tests will fail (rotate and |
| 320 | binascii), but these are not the modules you'd expect to need |
| 321 | on a Cray. |
Guido van Rossum | 1bf0bf4 | 1997-08-20 23:50:51 +0000 | [diff] [blame] | 322 | |
Guido van Rossum | 0078aaf | 1997-08-21 03:05:11 +0000 | [diff] [blame] | 323 | SGI: SGI's standard "make" utility (/bin/make or /usr/bin/make) |
| 324 | does not check whether a command actually changed the file it |
| 325 | is supposed to build. This means that whenever you say "make" |
| 326 | it will redo the link step. The remedy is to use SGI's much |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 327 | smarter "smake " utility (/usr/sbin/smake), or GNU make. If |
| 328 | you set the first line of the Makefile to #!/usr/sbin/smake |
| 329 | smake will be invoked by make (likewise for GNU make). |
Guido van Rossum | 0078aaf | 1997-08-21 03:05:11 +0000 | [diff] [blame] | 330 | |
Guido van Rossum | 9ac9a26 | 1998-02-16 22:19:21 +0000 | [diff] [blame] | 331 | A bug in the MIPSpro 7.1 compiler's optimizer seems to break |
| 332 | Modules/pypcre.c. The short term solution is to compile it |
Guido van Rossum | 0dd010a | 1998-06-30 16:58:58 +0000 | [diff] [blame] | 333 | without optimization. The bug is fixed in version 7.2.1 of |
| 334 | the compiler. |
Guido van Rossum | 9ac9a26 | 1998-02-16 22:19:21 +0000 | [diff] [blame] | 335 | |
Guido van Rossum | f5ade40 | 1999-01-11 16:45:44 +0000 | [diff] [blame] | 336 | A bug in gcc-2.8.1 sets sys.maxint to -1 which *also* seems to |
| 337 | break Modules/pypcre.c. The egcs versions of gcc fix this |
Guido van Rossum | 583b019 | 1999-01-11 16:47:30 +0000 | [diff] [blame] | 338 | problem. Or use configure --without-gcc to compile with SGI's |
| 339 | compiler, if you have it. (Raj Srinivasan, Kelvin Chu) |
Guido van Rossum | f5ade40 | 1999-01-11 16:45:44 +0000 | [diff] [blame] | 340 | |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 341 | OS/2: If you are running Warp3 or Warp4 and have IBM's VisualAge C/C++ |
| 342 | compiler installed, just change into the pc\os2vacpp directory |
| 343 | and type NMAKE. Threading and sockets are supported by default |
| 344 | in the resulting binaries of PYTHON15.DLL and PYTHON.EXE. |
| 345 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 346 | |
Guido van Rossum | dc8a3cb | 1998-05-12 15:29:18 +0000 | [diff] [blame] | 347 | Configuring threads |
| 348 | ------------------- |
| 349 | |
| 350 | The main switch to configure threads is to run the configure script |
| 351 | (see below) with the --with-thread switch (on DEC, use |
| 352 | --with-dec-threads). Unfortunately, on some platforms, additional |
| 353 | compiler and/or linker options are required. Below is a table of |
| 354 | those options, collected by Bill Janssen. I would love to automate |
| 355 | this process more, but the information below is not enough to write a |
| 356 | patch for the configure.in file, so manual intervention is required. |
| 357 | If you patch the configure.in file and are confident that the patch |
| 358 | works, please send me the patch. (Don't bother patching the configure |
| 359 | script itself -- it is regenerated each the configure.in file |
| 360 | changes.) |
| 361 | |
| 362 | Compiler switches for threads |
| 363 | ............................. |
| 364 | |
| 365 | OS/Compiler/threads Switches for use with threads |
| 366 | (POSIX is draft 10, DCE is draft 4) (1) compile only (2) compile & link |
| 367 | |
| 368 | SunOS 5.{1-5}/{gcc,SunPro cc}/solaris (1) -D_REENTRANT (2) -mt |
| 369 | SunOS 5.5/{gcc,SunPro cc}/POSIX (1) -D_REENTRANT |
| 370 | DEC OSF/1 3.x/cc/DCE (1) -D_REENTRANT (2) -threads |
| 371 | (butenhof@zko.dec.com) |
| 372 | Digital UNIX 4.x/cc/DCE (1) -D_REENTRANT (2) -threads |
| 373 | (butenhof@zko.dec.com) |
| 374 | Digital UNIX 4.x/cc/POSIX (1) -D_REENTRANT (2) -pthread |
| 375 | (butenhof@zko.dec.com) |
| 376 | AIX 4.1.4/cc_r/d7 (nothing) |
| 377 | (buhrt@iquest.net) |
| 378 | AIX 4.1.4/cc_r4/DCE (nothing) |
| 379 | (buhrt@iquest.net) |
| 380 | IRIX 6.2/cc/POSIX (nothing) |
| 381 | (robertl@cwi.nl) |
| 382 | |
| 383 | |
| 384 | Linker (ld) libraries and flags for threads |
| 385 | ........................................... |
| 386 | |
| 387 | OS/threads Libraries/switches for use with threads |
| 388 | |
| 389 | SunOS 5.{1-5}/solaris -lthread |
| 390 | SunOS 5.5/POSIX -lpthread |
| 391 | DEC OSF/1 3.x/DCE -lpthreads -lmach -lc_r -lc |
| 392 | (butenhof@zko.dec.com) |
| 393 | Digital UNIX 4.x/DCE -lpthreads -lpthread -lmach -lexc -lc |
| 394 | (butenhof@zko.dec.com) |
| 395 | Digital UNIX 4.x/POSIX -lpthread -lmach -lexc -lc |
| 396 | (butenhof@zko.dec.com) |
| 397 | AIX 4.1.4/{draft7,DCE} (nothing) |
| 398 | (buhrt@iquest.net) |
| 399 | IRIX 6.2/POSIX -lpthread |
| 400 | (jph@emilia.engr.sgi.com) |
| 401 | |
| 402 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 403 | Configuring additional built-in modules |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 404 | --------------------------------------- |
Guido van Rossum | 19e0c26 | 1995-01-17 16:36:34 +0000 | [diff] [blame] | 405 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 406 | You can configure the interpreter to contain fewer or more built-in |
| 407 | modules by editing the file Modules/Setup. This file is initially |
| 408 | copied (when the toplevel Makefile makes Modules/Makefile for the |
| 409 | first time) from Setup.in; if it does not exist yet, make a copy |
| 410 | yourself. Never edit Setup.in -- always edit Setup. Read the |
| 411 | comments in the file for information on what kind of edits you can |
| 412 | make. When you have edited Setup, Makefile and config.c in Modules |
| 413 | will automatically be rebuilt the next time you run make in the |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 414 | toplevel directory. (When working inside the Modules directory, use |
| 415 | "make Makefile; make".) |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 416 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 417 | The default collection of modules should build on any Unix system, but |
| 418 | many optional modules should work on all modern Unices (e.g. try dbm, |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 419 | nis, termios, timing, syslog, curses, new, soundex, parser). Often |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 420 | the quickest way to determine whether a particular module works or not |
| 421 | is to see if it will build: enable it in Setup, then if you get |
| 422 | compilation or link errors, disable it -- you're missing support. |
| 423 | |
| 424 | On SGI IRIX, there are modules that interface to many SGI specific |
| 425 | system libraries, e.g. the GL library and the audio hardware. |
| 426 | |
| 427 | For SunOS and Solaris, enable module "sunaudiodev" to support the |
| 428 | audio device. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 429 | |
Guido van Rossum | 4462e93 | 1997-01-22 21:00:32 +0000 | [diff] [blame] | 430 | In addition to the file Setup, you can also edit the file Setup.local. |
| 431 | (the makesetup script processes both). You may find it more |
| 432 | convenient to edit Setup.local and leave Setup alone. Then, when |
| 433 | installing a new Python version, you can copy your old Setup.local |
| 434 | file. |
| 435 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 436 | |
| 437 | Setting the optimization/debugging options |
| 438 | ------------------------------------------ |
| 439 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 440 | If you want or need to change the optimization/debugging options for |
| 441 | the C compiler, assign to the OPT variable on the toplevel make |
| 442 | command; e.g. "make OPT=-g" will build a debugging version of Python |
| 443 | on most platforms. The default is OPT=-O; a value for OPT in the |
| 444 | environment when the configure script is run overrides this default |
| 445 | (likewise for CC; and the initial value for LIBS is used as the base |
| 446 | set of libraries to link with). |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 447 | |
| 448 | |
| 449 | Testing |
| 450 | ------- |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 451 | |
| 452 | To test the interpreter that you have just built, type "make test". |
Guido van Rossum | 6ae5d3d | 1997-05-14 21:39:05 +0000 | [diff] [blame] | 453 | This runs the test set twice (once with no compiled files, once with |
| 454 | the compiled files left by the previous test run). The test set |
| 455 | produces some output. You can generally ignore the messages about |
| 456 | skipped tests due to an optional feature that can't be imported (if |
| 457 | you want to test those modules, edit Modules/Setup to configure them). |
| 458 | If a messages is printed about a failed test or a traceback or core |
Guido van Rossum | 24df684 | 1997-12-30 04:32:30 +0000 | [diff] [blame] | 459 | dump is produced, something's wrong. On some Linux systems (those |
| 460 | that are not yet using glibc 6), test_strftime fails due to a |
| 461 | non-standard-compliant implementation of strftime() in the C library. |
| 462 | Please ignore this, or upgrade to glibc version 6. |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 463 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 464 | IMPORTANT: If the tests fail and you decide to mail a bug report, |
| 465 | *don't* include the output of "make test". It is useless. Run the |
Guido van Rossum | 6ae5d3d | 1997-05-14 21:39:05 +0000 | [diff] [blame] | 466 | test that fails manually, as follows: |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 467 | |
Guido van Rossum | 6ae5d3d | 1997-05-14 21:39:05 +0000 | [diff] [blame] | 468 | python ../Lib/test/test_whatever.py |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 469 | |
| 470 | (substituting the top of the source tree for .. if you built in a |
Guido van Rossum | 6ae5d3d | 1997-05-14 21:39:05 +0000 | [diff] [blame] | 471 | different directory). This runs the test in verbose mode. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 472 | |
| 473 | |
| 474 | Installing |
| 475 | ---------- |
| 476 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 477 | To install the Python binary, library modules, shared library modules |
| 478 | (see below), include files, configuration files, and the manual page, |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 479 | just type |
| 480 | |
| 481 | make install |
| 482 | |
| 483 | This will install all platform-independent files in subdirectories the |
| 484 | directory given with the --prefix option to configure or the 'prefix' |
| 485 | Make variable (default /usr/local), and all binary and other |
| 486 | platform-specific files in subdirectories if the directory given by |
| 487 | --exec-prefix or the 'exec_prefix' Make variable (defaults to the |
| 488 | --prefix directory). |
| 489 | |
| 490 | All subdirectories created will have Python's version number in their |
| 491 | name, e.g. the library modules are installed in |
| 492 | "/usr/local/lib/python1.5/" by default. The Python binary is |
| 493 | installed as "python1.5" and a hard link named "python" is created. |
| 494 | The only file not installed with a version number in its name is the |
| 495 | manual page, installed as "/usr/local/man/man1/python.1" by default. |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 496 | |
Guido van Rossum | 4952369 | 1997-08-15 18:30:14 +0000 | [diff] [blame] | 497 | If you have a previous installation of a pre-1.5 Python that you don't |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 498 | want to replace yet, use |
| 499 | |
| 500 | make altinstall |
| 501 | |
| 502 | This installs the same set of files as "make install" except it |
| 503 | doesn't create the hard link to "python1.5" named "python" and it |
| 504 | doesn't install the manual page at all. |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 505 | |
| 506 | The only thing you may have to install manually is the Python mode for |
| 507 | Emacs. (But then again, more recent versions of Emacs may already |
| 508 | have it!) This is the file Misc/python-mode.el; follow the |
| 509 | instructions that came with Emacs for installation of site specific |
| 510 | files. |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 511 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 512 | |
| 513 | Configuration options and variables |
| 514 | ----------------------------------- |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 515 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 516 | Some special cases are handled by passing options to the configure |
| 517 | script. |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 518 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 519 | WARNING: if you rerun the configure script with different options, you |
| 520 | must run "make clean" before rebuilding. Exceptions to this rule: |
| 521 | after changing --prefix or --exec-prefix, all you need to do is remove |
Guido van Rossum | b06df27 | 1997-08-05 21:50:20 +0000 | [diff] [blame] | 522 | Modules/getpath.o. |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 523 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 524 | --with(out)-gcc: The configure script uses gcc (the GNU C compiler) if |
| 525 | it finds it. If you don't want this, or if this compiler is |
| 526 | installed but broken on your platform, pass the option |
| 527 | --without-gcc. You can also pass "CC=cc" (or whatever the |
| 528 | name of the proper C compiler is) in the environment, but the |
| 529 | advantage of using --without-gcc is that this option is |
| 530 | remembered by the config.status script for its --recheck |
| 531 | option. |
Guido van Rossum | 76be6ed | 1995-01-02 18:33:54 +0000 | [diff] [blame] | 532 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 533 | --prefix, --exec-prefix: If you want to install the binaries and the |
| 534 | Python library somewhere else than in /usr/local/{bin,lib}, |
| 535 | you can pass the option --prefix=DIRECTORY; the interpreter |
| 536 | binary will be installed as DIRECTORY/bin/python and the |
| 537 | library files as DIRECTORY/lib/python/*. If you pass |
| 538 | --exec-prefix=DIRECTORY (as well) this overrides the |
| 539 | installation prefix for architecture-dependent files (like the |
| 540 | interpreter binary). Note that --prefix=DIRECTORY also |
| 541 | affects the default module search path (sys.path), when |
| 542 | Modules/config.c is compiled. Passing make the option |
| 543 | prefix=DIRECTORY (and/or exec_prefix=DIRECTORY) overrides the |
| 544 | prefix set at configuration time; this may be more convenient |
| 545 | than re-running the configure script if you change your mind |
| 546 | about the install prefix... |
Guido van Rossum | 76be6ed | 1995-01-02 18:33:54 +0000 | [diff] [blame] | 547 | |
Guido van Rossum | b06df27 | 1997-08-05 21:50:20 +0000 | [diff] [blame] | 548 | --with-readline: This option is no longer supported. To use GNU |
| 549 | readline, enable module "readline" in the Modules/Setup file. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 550 | |
Guido van Rossum | faf681a | 1996-06-20 14:32:08 +0000 | [diff] [blame] | 551 | --with-thread: On most Unix systems, you can now use multiple threads. |
Guido van Rossum | 4462e93 | 1997-01-22 21:00:32 +0000 | [diff] [blame] | 552 | To enable this, pass --with-thread. (--with-threads is an |
| 553 | alias.) If the library required for threads lives in a |
Guido van Rossum | 8d90f9d | 1997-05-22 20:13:25 +0000 | [diff] [blame] | 554 | peculiar place, you can use --with-thread=DIRECTORY. NOTE: |
| 555 | you must also enable the thread module by uncommenting it in |
| 556 | the Modules/Setup file. (Threads aren't enabled automatically |
| 557 | because there are run-time penalties when support for them is |
| 558 | compiled in even if you don't use them.) IMPORTANT: run "make |
| 559 | clean" after changing (either enabling or disabling) this |
Guido van Rossum | 0e13da9 | 1998-02-22 04:36:34 +0000 | [diff] [blame] | 560 | option, or you will get link errors! Note: for DEC Unix use |
| 561 | --with-dec-threads instead. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 562 | |
| 563 | --with-sgi-dl: On SGI IRIX 4, dynamic loading of extension modules is |
| 564 | supported by the "dl" library by Jack Jansen, which is |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 565 | ftp'able from ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 566 | This is enabled (after you've ftp'ed and compiled the dl |
| 567 | library!) by passing --with-sgi-dl=DIRECTORY where DIRECTORY |
| 568 | is the absolute pathname of the dl library. (Don't bother on |
| 569 | IRIX 5, it already has dynamic linking using SunOS style |
| 570 | shared libraries.) Support for this feature is deprecated. |
| 571 | |
| 572 | --with-dl-dld: Dynamic loading of modules is rumoured to be supported |
| 573 | on some other systems: VAX (Ultrix), Sun3 (SunOS 3.4), Sequent |
| 574 | Symmetry (Dynix), and Atari ST. This is done using a |
| 575 | combination of the GNU dynamic loading package |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 576 | (ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z) and an |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 577 | emulation of the SGI dl library mentioned above (the emulation |
| 578 | can be found at |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 579 | ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z). To |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 580 | enable this, ftp and compile both libraries, then call the |
| 581 | configure passing it the option |
| 582 | --with-dl-dld=DL_DIRECTORY,DLD_DIRECTORY where DL_DIRECTORY is |
| 583 | the absolute pathname of the dl emulation library and |
| 584 | DLD_DIRECTORY is the absolute pathname of the GNU dld library. |
| 585 | (Don't bother on SunOS 4 or 5, they already have dynamic |
| 586 | linking using shared libraries.) Support for this feature is |
| 587 | deprecated. |
| 588 | |
| 589 | --with-libm, --with-libc: It is possible to specify alternative |
| 590 | versions for the Math library (default -lm) and the C library |
| 591 | (default the empty string) using the options |
| 592 | --with-libm=STRING and --with-libc=STRING, respectively. E.g. |
| 593 | if your system requires that you pass -lc_s to the C compiler |
| 594 | to use the shared C library, you can pass --with-libc=-lc_s. |
| 595 | These libraries are passed after all other libraries, the C |
| 596 | library last. |
Guido van Rossum | 3ff96dd | 1996-07-30 18:05:04 +0000 | [diff] [blame] | 597 | |
| 598 | --with-next-archs='arch1 arch2': Under NEXTSTEP, this will build |
| 599 | all compiled binaries with the architectures listed. Includes |
| 600 | correctly setting the target architecture specific resource |
Guido van Rossum | cc55c2d | 1996-10-21 15:14:27 +0000 | [diff] [blame] | 601 | directory. (This option is not supported on other platforms.) |
Guido van Rossum | 76be6ed | 1995-01-02 18:33:54 +0000 | [diff] [blame] | 602 | |
Guido van Rossum | d02ba45 | 1996-07-31 17:36:01 +0000 | [diff] [blame] | 603 | --with-libs='libs': Add 'libs' to the LIBS that the python |
| 604 | linked against. |
| 605 | |
Guido van Rossum | 76be6ed | 1995-01-02 18:33:54 +0000 | [diff] [blame] | 606 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 607 | Building for multiple architectures (using the VPATH feature) |
| 608 | ------------------------------------------------------------- |
| 609 | |
| 610 | If your file system is shared between multiple architectures, it |
| 611 | usually is not necessary to make copies of the sources for each |
| 612 | architecture you want to support. If the make program supports the |
| 613 | VPATH feature, you can create an empty build directory for each |
| 614 | architecture, and in each directory run the configure script (on the |
| 615 | appropriate machine with the appropriate options). This creates the |
| 616 | necessary subdirectories and the Makefiles therein. The Makefiles |
| 617 | contain a line VPATH=... which points to directory containing the |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 618 | actual sources. (On SGI systems, use "smake -J1" instead of "make" if |
| 619 | you use VPATH -- don't try gnumake.) |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 620 | |
| 621 | For example, the following is all you need to build a minimal Python |
| 622 | in /usr/tmp/python (assuming ~guido/src/python is the toplevel |
| 623 | directory and you want to build in /usr/tmp/python): |
| 624 | |
| 625 | $ mkdir /usr/tmp/python |
| 626 | $ cd /usr/tmp/python |
| 627 | $ ~guido/src/python/configure |
| 628 | [...] |
| 629 | $ make |
| 630 | [...] |
| 631 | $ |
| 632 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 633 | Note that Modules/Makefile copies the original Setup file to the build |
| 634 | directory if it finds no Setup file there. This means that you can |
| 635 | edit the Setup file for each architecture independently. For this |
| 636 | reason, subsequent changes to the original Setup file are not tracked |
| 637 | automatically, as they might overwrite local changes. To force a copy |
| 638 | of a changed original Setup file, delete the target Setup file. (The |
| 639 | makesetup script supports multiple input files, so if you want to be |
| 640 | fancy you can change the rules to create an empty Setup.local if it |
| 641 | doesn't exist and run it with arguments $(srcdir)/Setup Setup.local; |
| 642 | however this assumes that you only need to add modules.) |
| 643 | |
| 644 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 645 | Building on non-UNIX systems |
| 646 | ---------------------------- |
| 647 | |
Guido van Rossum | 31ae207 | 1999-04-12 14:47:30 +0000 | [diff] [blame] | 648 | For Windows 95/98 or NT, assuming you have MS VC++ 5.0 or 6.0, the |
| 649 | project files are in PCbuild, the workspace is pcbuild.dsw. (The |
| 650 | project files are for VC++ 5.0, but VC++ 6.0 will convert them for |
| 651 | you -- start VC++ and then use Open Workspace.) |
Guido van Rossum | 8d7d4ed | 1996-07-30 21:41:07 +0000 | [diff] [blame] | 652 | |
Guido van Rossum | 31ae207 | 1999-04-12 14:47:30 +0000 | [diff] [blame] | 653 | For other non-Unix Windows compilers, in particular Windows 3.1 and |
| 654 | for OS/2, enter the directory "PC" and read the file "readme.txt". |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 655 | |
| 656 | For the Mac, a separate source distribution will be made available, |
| 657 | for use with the CodeWarrior compiler. If you are interested in Mac |
| 658 | development, join the PythonMac Special Interest Group |
| 659 | (http://www.python.org/sigs/pythonmac-sig/, or send email to |
| 660 | pythonmac-sig-request@python.org). |
| 661 | |
| 662 | Of course, there are also binary distributions available for these |
| 663 | platforms -- see http://www.python.org/python/. |
| 664 | |
| 665 | To port Python to a new non-UNIX system, you will have to fake the |
| 666 | effect of running the configure script manually (for Mac and PC, this |
| 667 | has already been done for you). A good start is to copy the file |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 668 | config.h.in to config.h and edit the latter to reflect the actual |
| 669 | configuration of your system. Most symbols must simply be defined as |
| 670 | 1 only if the corresponding feature is present and can be left alone |
| 671 | otherwise; however RETSIGTYPE must always be defined, either as int or |
| 672 | as void, and the *_t type symbols must be defined as some variant of |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 673 | int if they need to be defined at all. |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 674 | |
| 675 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 676 | |
| 677 | Miscellaneous issues |
| 678 | ==================== |
| 679 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 680 | Documentation |
| 681 | ------------- |
| 682 | |
Fred Drake | 0e6444c | 1999-05-17 19:35:01 +0000 | [diff] [blame] | 683 | All documentation is provided online in a variety of formats. In |
| 684 | order of importance for new users: Tutorial, Library Reference, |
| 685 | Language Reference, Extending & Embedding, and the Python/C API. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 686 | Especially the Library Reference is of immense value since much of |
| 687 | Python's power (including the built-in data types and functions!) is |
Fred Drake | 0e6444c | 1999-05-17 19:35:01 +0000 | [diff] [blame] | 688 | described there. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 689 | |
Fred Drake | 0e6444c | 1999-05-17 19:35:01 +0000 | [diff] [blame] | 690 | All documentation is also available online via the Python web site |
| 691 | (http://www.python.org/, see below). It is available online for |
| 692 | occaissional reference, or can be downloaded in many formats for |
| 693 | faster access. The documents are available in HTML, PostScript, PDF, |
| 694 | HTML Help, and LaTeX; the LaTeX version is primarily for documentation |
| 695 | authors or people with special formatting requirements. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 696 | |
| 697 | |
| 698 | Emacs mode |
| 699 | ---------- |
| 700 | |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 701 | There's an excellent Emacs editing mode for Python code; see the file |
| 702 | Misc/python-mode.el. Originally written by the famous Tim Peters, it |
| 703 | is now maintained by the equally famous Barry Warsaw |
Barry Warsaw | fe216b7 | 1998-05-29 20:56:34 +0000 | [diff] [blame] | 704 | <bwarsaw@cnri.reston.va.us>. The latest version, along with various |
| 705 | other contributed Python-related Emacs goodies, is online at |
| 706 | <http://www.python.org/emacs/python-mode>. And if you are planning to |
| 707 | edit the Python C code, please pick up the latest version of CC Mode |
| 708 | <http://www.python.org/emacs/cc-mode>; it contains a "python" style |
| 709 | used throughout most of the Python C source files. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 710 | |
| 711 | |
Guido van Rossum | 8d7d4ed | 1996-07-30 21:41:07 +0000 | [diff] [blame] | 712 | Web site |
| 713 | -------- |
| 714 | |
| 715 | Python's own web site has URL http://www.python.org/. Come visit us! |
Guido van Rossum | a16e275 | 1998-04-13 20:14:05 +0000 | [diff] [blame] | 716 | There are a number of mirrors, and a list of mirrors is accessible |
| 717 | from the home page -- try a mirror that's close you you. |
Guido van Rossum | 8d7d4ed | 1996-07-30 21:41:07 +0000 | [diff] [blame] | 718 | |
| 719 | |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 720 | Ftp site |
| 721 | -------- |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 722 | |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 723 | Python's own ftp site is ftp://ftp.python.org/pub/python/. There are |
Guido van Rossum | a16e275 | 1998-04-13 20:14:05 +0000 | [diff] [blame] | 724 | numerous mirrors; the list of mirrors is accessible from |
| 725 | http://www.python.org/. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 726 | |
| 727 | |
Guido van Rossum | a16e275 | 1998-04-13 20:14:05 +0000 | [diff] [blame] | 728 | Newsgroups |
| 729 | ---------- |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 730 | |
Guido van Rossum | a16e275 | 1998-04-13 20:14:05 +0000 | [diff] [blame] | 731 | Read comp.lang.python, a high-volume discussion newsgroup about |
| 732 | Python, or comp.lang.python.announce, a low-volume moderated newsgroup |
| 733 | for Python-related announcements. These are also accessible as |
| 734 | mailing lists, see the next item. |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 735 | |
Guido van Rossum | a16e275 | 1998-04-13 20:14:05 +0000 | [diff] [blame] | 736 | Archives are accessible via Deja News; the Python website has a |
| 737 | query form for the archives at http://www.python.org/search/. |
| 738 | |
| 739 | |
| 740 | Mailing lists |
| 741 | ------------- |
| 742 | |
| 743 | See http://www.python.org/psa/MailingLists.html for an overview of the |
| 744 | many Python related mailing lists. |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 745 | |
| 746 | |
| 747 | Bug reports |
| 748 | ----------- |
| 749 | |
Guido van Rossum | a16e275 | 1998-04-13 20:14:05 +0000 | [diff] [blame] | 750 | Bugs are best reported to the comp.lang.python newsgroup (or the |
| 751 | Python mailing list) -- see the section "Newsgroups" above. Before |
| 752 | posting, check the newsgroup archives (see above) to see if your bug |
| 753 | has already been reported! If you don't want to go public, send them |
| 754 | to me: <guido@python.org>. |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 755 | |
| 756 | |
| 757 | Questions |
| 758 | --------- |
| 759 | |
Guido van Rossum | 4952369 | 1997-08-15 18:30:14 +0000 | [diff] [blame] | 760 | For help, if you can't find it in the manuals or on the web site, it's |
| 761 | best to post to the comp.lang.python or the Python mailing list (see |
| 762 | above). If you specifically don't want to involve the newsgroup or |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 763 | mailing list, send questions to <python-help@python.org> (a group of |
| 764 | volunteers which does *not* include me). Because of my work and email |
| 765 | volume, I'm often be slow in answering questions sent to me directly; |
| 766 | I prefer to answer questions posted to the newsgroup. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 767 | |
| 768 | |
| 769 | The Tk interface |
| 770 | ---------------- |
| 771 | |
| 772 | Tk (the user interface component of John Ousterhout's Tcl language) is |
| 773 | also usable from Python. Since this requires that you first build and |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 774 | install Tcl/Tk, the Tk interface is not enabled by default. Python |
| 775 | supports all Tcl/Tk versions from version 7.5/4.1 through 8.0 (and it |
| 776 | is expected that it will also work with newer versions). Tcl/Tk |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 777 | 7.4/4.0 is no longer supported. 8.0 or any later non-alpha non-beta |
| 778 | release is recommended. |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 779 | |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 780 | See http://sunscript.sun.com/ for more info on Tcl/Tk, including the |
| 781 | on-line manual pages. |
| 782 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 783 | |
| 784 | To enable the Python/Tk interface, once you've built and installed |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 785 | Tcl/Tk, load the file Modules/Setup in your favorite text editor and |
| 786 | search for the string "_tkinter". Then follow the instructions found |
| 787 | there. If you have installed Tcl/Tk or X11 in unusual places, you |
| 788 | will have to edit the first line to fix or add -I and -L options. |
| 789 | (Also see the general instructions at the top of that file.) |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 790 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 791 | There is little documentation on how to use Tkinter; however most of |
| 792 | the Tk manual pages apply quite straightforwardly. Begin with |
| 793 | fetching the "Tk Lifesaver" document, |
| 794 | e.g. ftp://ftp.python.org/pub/python/doc/tkinter-doc.tar.gz (a gzipped |
| 795 | tar file containing a PostScript file) or the on-line version |
| 796 | http://www.python.org/doc/life-preserver/index.html. Reading the |
| 797 | Tkinter.py source will reveal most details on how Tkinter calls are |
| 798 | translated into Tcl code. |
| 799 | |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 800 | A more recent introduction to Tkinter programming, by Fredrik Lundh, |
| 801 | is at http://www.pythonware.com/library/tkinter/introduction/index.htm. |
| 802 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 803 | There are demos in the Demo/tkinter directory, in the subdirectories |
| 804 | guido, matt and www (the matt and guido subdirectories have been |
| 805 | overhauled to use more recent Tkinter coding conventions). |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 806 | |
| 807 | Note that there's a Python module called "Tkinter" (capital T) which |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 808 | lives in Lib/tkinter/Tkinter.py, and a C module called "_tkinter" |
| 809 | (lower case t and leading underscore) which lives in |
| 810 | Modules/_tkinter.c. Demos and normal Tk applications only import the |
| 811 | Python Tkinter module -- only the latter uses the C _tkinter module |
| 812 | directly. In order to find the C _tkinter module, it must be compiled |
| 813 | and linked into the Python interpreter -- the _tkinter line in the |
| 814 | Setup file does this. In order to find the Python Tkinter module, |
| 815 | sys.path must be set correctly -- the TKPATH assignment in the Setup |
| 816 | file takes care of this, but only if you install Python properly |
| 817 | ("make install libinstall"). (You can also use dynamic loading for |
| 818 | the C _tkinter module, in which case you must manually fix up sys.path |
| 819 | or set $PYTHONPATH for the Python Tkinter module.) |
Guido van Rossum | 84c8c7f | 1995-08-28 02:44:24 +0000 | [diff] [blame] | 820 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 821 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 822 | Distribution structure |
| 823 | ---------------------- |
| 824 | |
| 825 | Most subdirectories have their own README file. Most files have |
| 826 | comments. |
| 827 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 828 | Demo/ Demonstration scripts, modules and programs |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 829 | Grammar/ Input for the parser generator |
| 830 | Include/ Public header files |
| 831 | Lib/ Python library modules |
| 832 | Makefile.in Source from which config.status creates Makefile |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 833 | Misc/ Miscellaneous useful files |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 834 | Modules/ Implementation of most built-in modules |
| 835 | Objects/ Implementation of most built-in object types |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 836 | PC/ PC porting files (DOS, Windows, OS/2) |
| 837 | PCbuild/ Directory where you should build for Windows NT/95 |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 838 | Parser/ The parser and tokenizer and their input handling |
| 839 | Python/ The "compiler" and interpreter |
| 840 | README The file you're reading now |
| 841 | Tools/ Some useful programs written in Python |
| 842 | acconfig.h Additional input for the autoheader program |
| 843 | config.h.in Source from which config.status creates config.h |
| 844 | configure Configuration shell script (GNU autoconf output) |
| 845 | configure.in Configuration specification (GNU autoconf input) |
| 846 | install-sh Shell script used to install files |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 847 | |
| 848 | The following files will (may) be created in the toplevel directory by |
| 849 | the configuration and build processes: |
| 850 | |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 851 | Makefile Build rules |
| 852 | config.cache cache of configuration variables |
| 853 | config.h Configuration header |
Guido van Rossum | c0be2f5 | 1997-10-08 05:05:28 +0000 | [diff] [blame] | 854 | config.log Log from last configure run |
| 855 | config.status Status from last run of configure script |
| 856 | libpython1.5.a The library archive |
Guido van Rossum | 6d9cc80 | 1996-08-01 17:31:22 +0000 | [diff] [blame] | 857 | python The executable interpreter |
| 858 | tags, TAGS Tags files for vi and Emacs |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 859 | |
| 860 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 861 | Author's address |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 862 | ================ |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 863 | |
| 864 | Guido van Rossum |
Guido van Rossum | faf681a | 1996-06-20 14:32:08 +0000 | [diff] [blame] | 865 | CNRI |
| 866 | 1895 Preston White Drive |
Guido van Rossum | 8d7d4ed | 1996-07-30 21:41:07 +0000 | [diff] [blame] | 867 | Reston, VA 20191 |
Guido van Rossum | faf681a | 1996-06-20 14:32:08 +0000 | [diff] [blame] | 868 | USA |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 869 | |
Guido van Rossum | d0fe845 | 1996-08-26 03:02:37 +0000 | [diff] [blame] | 870 | E-mail: guido@cnri.reston.va.us or guido@python.org |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 871 | |
| 872 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 873 | |
| 874 | Copyright notice |
| 875 | ================ |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 876 | |
| 877 | The Python source is copyrighted, but you can freely use and copy it |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 878 | as long as you don't change or remove the copyright notice: |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 879 | |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 880 | ---------------------------------------------------------------------- |
Guido van Rossum | af5b83e | 1995-01-04 19:02:35 +0000 | [diff] [blame] | 881 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, |
| 882 | The Netherlands. |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 883 | |
| 884 | All Rights Reserved |
| 885 | |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 886 | Permission to use, copy, modify, and distribute this software and its |
| 887 | documentation for any purpose and without fee is hereby granted, |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 888 | provided that the above copyright notice appear in all copies and that |
Guido van Rossum | c561e5d | 1994-08-23 13:52:46 +0000 | [diff] [blame] | 889 | both that copyright notice and this permission notice appear in |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 890 | supporting documentation, and that the names of Stichting Mathematisch |
Guido van Rossum | f501b4e | 1996-10-25 14:32:48 +0000 | [diff] [blame] | 891 | Centrum or CWI or Corporation for National Research Initiatives or |
| 892 | CNRI not be used in advertising or publicity pertaining to |
| 893 | distribution of the software without specific, written prior |
| 894 | permission. |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 895 | |
Guido van Rossum | f501b4e | 1996-10-25 14:32:48 +0000 | [diff] [blame] | 896 | While CWI is the initial source for this software, a modified version |
| 897 | is made available by the Corporation for National Research Initiatives |
| 898 | (CNRI) at the Internet address ftp://ftp.python.org. |
| 899 | |
| 900 | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH |
| 901 | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF |
| 902 | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH |
| 903 | CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL |
| 904 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 905 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| 906 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 907 | PERFORMANCE OF THIS SOFTWARE. |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 908 | ---------------------------------------------------------------------- |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 909 | |
| 910 | |
Guido van Rossum | faf681a | 1996-06-20 14:32:08 +0000 | [diff] [blame] | 911 | --Guido van Rossum (home page: http://www.python.org/~guido/) |