Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 1 | Python release 1.0.3 |
| 2 | ==================== |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 3 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 4 | ==> This is patch number 3 to Python 1.0, bumping its version string |
| 5 | to 1.0.3. It consists almost entirely of essential bug fixes to |
| 6 | the C sources. See the file Misc/NEWS for a description of what's |
| 7 | new in this patch (as well as what's new in 1.0). |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 8 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 9 | ==> Python 1.0 is the first "official" Python release in more than |
| 10 | half a year. It's significantly improved over version 0.9.9, both |
| 11 | at the functionality level and (especially) in portability of the |
| 12 | source -- you should now be able to configure build this without |
| 13 | manual intervention on almost any type of Unix system. It is |
| 14 | known to work at least on IRIX 4 and 5, SunOS 4, Solaris 2, HP-UX, |
| 15 | Ultrix, OSF/1, AIX, SCO ODT 3.0, Minix, Linux, SEQUENT, and |
| 16 | through the use of automatic feature detection should work on most |
| 17 | other Unix flavors as well. Binaries are available for Macintosh |
| 18 | and PC platforms (for DOS, DOS w/ 32-bit extender, Windows, and |
| 19 | Windows NT). |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 20 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 21 | ==> If you don't know yet what Python is: it's an interpreted, |
| 22 | extensible, embeddable, interactive, object-oriented programming |
| 23 | language. For a quick summary of what Python can mean for a |
| 24 | UNIX/C programmer, read Misc/BLURB.LUTZ. |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 25 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 26 | ==> If you want to start compiling right away: just type "./configure" |
| 27 | in the current directory and when it finishes, type "make". See |
| 28 | the section Build Instructions below for more details. |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 29 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 30 | ==> All documentation is in the subdirectory Doc in the form of LaTeX |
| 31 | files. In order of importance for new users: Tutorial (tut), |
| 32 | Library Reference (lib), Language Reference (ref), Extending |
| 33 | (ext). Note that especially the Library Reference is of immense |
| 34 | value since much of Python's power (including the built-in data |
| 35 | types and functions!) is described there. [XXX The ext document |
| 36 | has not been updated to reflect this release yet.] |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 37 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 38 | ==> Python is COPYRIGHTED but free to use for all. See the copyright |
| 39 | notice at the end of this file. |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 40 | |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 41 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 42 | Build instructions |
| 43 | ------------------ |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 44 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 45 | Before you start building Python, you must first configure it. This |
| 46 | entails (at least) running the script "./configure", which figures out |
| 47 | your system configuration and creates several Makefiles. (This will |
| 48 | take a minute or two -- please be patient!) When it is done, you are |
| 49 | ready to run make. Typing "make" in the toplevel directory will |
| 50 | recursively run make in each of the subdirectories Parser, Objects, |
| 51 | Python and Modules, creating a library file in each one. The |
| 52 | executable of the interpreter is built in the Modules subdirectory but |
| 53 | moved up here when it is built. If you want or need to, you can also |
| 54 | chdir into each subdirectory in turn and run make there manually |
| 55 | (do the Modules subdirectory last!). If you run into trouble, first |
| 56 | see the section Troubleshooting later in this file. |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 57 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 58 | EXCEPTIONS: on SVR4 derived systems, you need to pass the configure |
| 59 | script the option --with-svr4. See below for more options you can |
| 60 | pass to the configure script. |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 61 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 62 | AIX users: read the file Misc/AIX-NOTES before trying to build. |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 63 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 64 | Minix users: when using ack, use "CC=cc AR=aal RANLIB=: ./configure"! |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 65 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 66 | You can configure the interpreter to contain fewer or more built-in |
| 67 | modules by editing the file Modules/Setup. This file is initially |
| 68 | copied (when the toplevel Makefile makes Modules/Makefile for the |
| 69 | first time) from Setup.in; if it does not exist yet, make a copy |
| 70 | yourself. Never edit Setup.in -- always edit Setup. Read the |
| 71 | comments in the file for information on what kind of edits you can |
| 72 | make. When you have edited Setup, Makefile and config.c in Modules |
| 73 | will automatically be rebuilt the next time you run make in the |
| 74 | toplevel directory. (There are some example Setup files which you may |
| 75 | copy to Setup for specific systems; have a look at Setup.*.) |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 76 | |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 77 | If you want to change the optimization level of the build, assign to |
| 78 | the OPT variable on the toplevel make command; e.g. "make OPT=-g" will |
| 79 | build a debugging version of Python on most platforms. |
| 80 | |
| 81 | To test the interpreter that you have just built, type "make test". |
| 82 | This runs the test set silently, twice (once with no compiled files, |
| 83 | once with the compiled files left by the previous test run). Each |
| 84 | test run should print "All tests OK." and nothing more. (The test set |
| 85 | does not test the built-in modules, but will find most other problems |
| 86 | with the interpreter.) |
| 87 | |
| 88 | To install the interpreter as /usr/local/bin/python, type "make |
| 89 | install". To install the library as /usr/local/lib/python, type "make |
| 90 | libinstall". To install the manual page as |
| 91 | /usr/local/man/man1/python.1, type "make maninstall". To install the |
| 92 | Emacs editing mode for python, manually copy the file |
| 93 | Misc/python-mode.el to your local Emacs lisp directory. The directory |
| 94 | /usr/local can be overridden at configuration time by passing |
| 95 | --prefix=DIRECTORY to the configure script, or at make time by passing |
| 96 | "prefix=DIRECTORY" to make. See below for more information on --prefix. |
| 97 | |
| 98 | If you plan to do development of extension modules or to embed Python |
| 99 | in another application and don't want to reference the original source |
| 100 | tree, you can type "make inclinstall" and "make libainstall" to |
| 101 | install the include files and lib*.a files, respectively, as |
| 102 | /usr/local/include/Py/*.h and /usr/local/lib/python/lib/lib*.a. The |
| 103 | make libainstall target also installs copies of several other files |
| 104 | used or produced during the build process which are needed to build |
| 105 | extensions or to generate their Makefiles. |
| 106 | |
| 107 | To print the documentation, cd into the Doc subdirectory, type "make" |
| 108 | (let's hope you have LaTeX installed!), and send the four resulting |
| 109 | PostScript files (tut.ps, lib.ps, ref.ps, and ext.ps) to the printer. |
| 110 | See the README file there; you can also build a texinfo version of the |
| 111 | library manual and from that construct an Emacs info version (the |
| 112 | hypertext format used by the Emacs "info" command) and an HTML version |
| 113 | (the hypertext format used by the World Wide Web distributed |
| 114 | information initiative). You don't need to have LaTeX installed for |
| 115 | this. Note that the Python archive sites also carry the resulting |
| 116 | PostScript files, in case you have a PostScript printer but not LaTeX. |
| 117 | |
| 118 | Some special cases are handled by passing environment variables or |
| 119 | options to the configure script: |
| 120 | |
| 121 | - The configure script uses gcc (the GNU C compiler) if it finds it. |
| 122 | If you don't want this, or if this compiler is installed but broken on |
| 123 | your platform, pass "CC=cc" (or whatever the name of the proper C |
| 124 | compiler is) in the environment. |
| 125 | |
| 126 | - On System V, Release 4 derived systems (e.g. SOLARIS 2, but not |
| 127 | IRIX 5) you need to call the configure script with the option |
| 128 | --with-svr4. This is needed so the libraries -lnsl and -lsocket are |
| 129 | found. (On some other systems, e.g. IRIX 5, these libraries exist but |
| 130 | are incompatible with other system libraries such as X11 and GL.) |
| 131 | |
| 132 | - If you want to install the binaries and the Python library somewhere |
| 133 | else than in /usr/local/{bin,lib}, you can pass the option |
| 134 | --prefix=DIRECTORY; the interpreter binary will be installed as |
| 135 | DIRECTORY/bin/python and the library files as DIRECTORY/lib/python/*. |
| 136 | If you pass --exec-prefix=DIRECTORY (as well) this overrides the |
| 137 | installation prefix for architecture-dependent files (like the |
| 138 | interpreter binary). Note that --prefix=DIRECTORY also affects the |
| 139 | default module search path (sys.path), when Modules/config.c is |
| 140 | compiled. Passing make the option prefix=DIRECTORY (and/or |
| 141 | exec_prefix=DIRECTORY) overrides the prefix set at configuration time; |
| 142 | this may be more convenient than re-running the configure script if |
| 143 | you change your mind about the install prefix... |
| 144 | |
Guido van Rossum | 03d8f74 | 1994-08-12 12:45:02 +0000 | [diff] [blame] | 145 | - You can use the GNU readline library to improve the interactive user |
| 146 | interface: this gives you line editing and command history when |
| 147 | calling python interactively. You need to configure build the GNU |
| 148 | readline library before running the configure script. Its sources are |
| 149 | no longer distributed with Python; you can ftp them from any GNU |
| 150 | mirror site, or from its home site: |
| 151 | ftp://slc2.ins.cwru.edu/pub/dist/readline-2.0.tar.gz (or a higher |
| 152 | version number -- using version 1.x is not recommended). Pass the |
| 153 | Python configure script the option --with-readline=DIRECTORY where |
| 154 | DIRECTORY is the absolute pathname of the directory where you've built |
| 155 | the readline library. Some hints on building and using the readline |
| 156 | library: |
| 157 | |
| 158 | - On SGI IRIX 5, you may have to add the following |
| 159 | to rldefs.h: |
| 160 | |
| 161 | #ifndef sigmask |
| 162 | #define sigmask(sig) (1L << ((sig)-1)) |
| 163 | #endif |
| 164 | |
| 165 | - The readline library requires use of the termcap library. A |
| 166 | known problem with this is that it contains entry points which |
| 167 | cause conflicts with the STDWIN and SGI GL libraries. The stdwin |
| 168 | conflict can be solved (and will be, in the next release of |
| 169 | stdwin) by adding a line saying '#define werase w_erase' to the |
| 170 | stdwin.h file (in the stdwin distribution, subdirectory H). The |
| 171 | GL conflict has been solved in the Python configure script by a |
| 172 | hack that forces use of the static version of the termcap library. |
| 173 | |
| 174 | - Check the newsgroup gnu.bash.bugs for specific problems with the |
| 175 | readline library. |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 176 | |
| 177 | - On SGI IRIX, and on Sun SOLARIS 2, you can use multiple threads. To |
| 178 | enable this, pass --with-thread. In the Modules/Setup file, enable |
| 179 | the thread module. (Threads aren't enabled automatically because |
| 180 | there are run-time penalties when support for them is compiled in even |
| 181 | if you don't use them.) |
| 182 | |
| 183 | - On SGI IRIX, there are modules that interface to many SGI specific |
| 184 | system libraries, e.g. the GL library and the audio hardware. To |
| 185 | enable these modules, you must edit the Modules/Setup file (or copy the |
| 186 | Setup.irix4 file to it). |
| 187 | |
| 188 | - On SGI IRIX 4, dynamic loading of extension modules is supported by |
| 189 | the "dl" library by Jack Jansen, which is ftp'able from |
| 190 | ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. This is enabled (after |
| 191 | you've ftp'ed and compiled the dl library!) by passing |
| 192 | --with-sgi-dl=DIRECTORY where DIRECTORY is the absolute pathname of |
| 193 | the dl library. (Don't bother on IRIX 5, it already has dynamic |
| 194 | linking using SunOS style shared libraries.) |
| 195 | |
| 196 | - Dynamic loading of modules is rumoured to be supported on some other |
| 197 | systems: VAX (Ultrix), Sun3 (SunOS 3.4), Sequent Symmetry (Dynix), and |
| 198 | Atari ST. This is done using a combination of the GNU dynamic loading |
| 199 | package (ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z) and an |
| 200 | emulation of the SGI dl library mentioned above (the emulation can be |
| 201 | found at ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z). To enable |
| 202 | this, ftp and compile both libraries, then call the configure passing |
| 203 | it the option --with-dl-dld=DL_DIRECTORY,DLD_DIRECTORY where |
| 204 | DL_DIRECTORY is the absolute pathname of the dl emulation library and |
| 205 | DLD_DIRECTORY is the absolute pathname of the GNU dld library. (Don't |
| 206 | bother on SunOS 4 or 5, they already have dynamic linking using shared |
| 207 | libraries.) |
| 208 | |
| 209 | - It is possible to specify alternative versions for the Math library |
| 210 | (default -lm) and the C library (default the empty string) using the |
| 211 | options --with-libm=STRING and --with-libc=STRING, respectively. E.g. |
| 212 | if your system requires that you pass -lc_s to the C compiler to use |
| 213 | the shared C library, you can pass --with-libc=-lc_s. These libraries |
| 214 | are passed after all other libraries, the C library last. |
| 215 | |
| 216 | You can also build an "extended" interpreter, using modules that are |
| 217 | not contained in the Modules directory. Extensions are distributed as |
| 218 | a separate tar file (currently extensions.tar.Z). See the README file |
| 219 | there. |
| 220 | |
| 221 | |
| 222 | Building for multiple architectures (using the VPATH feature) |
| 223 | ------------------------------------------------------------- |
| 224 | |
| 225 | If your file system is shared between multiple architectures, it |
| 226 | usually is not necessary to make copies of the sources for each |
| 227 | architecture you want to support. If the make program supports the |
| 228 | VPATH feature, you can create an empty build directory for each |
| 229 | architecture, and in each directory run the configure script (on the |
| 230 | appropriate machine with the appropriate options). This creates the |
| 231 | necessary subdirectories and the Makefiles therein. The Makefiles |
| 232 | contain a line VPATH=... which points to directory containing the |
| 233 | actual sources. |
| 234 | |
| 235 | For example, the following is all you need to build a minimal Python |
| 236 | in /usr/tmp/python (assuming ~guido/src/python is the toplevel |
| 237 | directory and you want to build in /usr/tmp/python): |
| 238 | |
| 239 | $ mkdir /usr/tmp/python |
| 240 | $ cd /usr/tmp/python |
| 241 | $ ~guido/src/python/configure |
| 242 | [...] |
| 243 | $ make |
| 244 | [...] |
| 245 | $ |
| 246 | |
| 247 | To use the readline library in this case, you will have to create a |
| 248 | subdirectory of your build directory called readline, copy |
| 249 | readline/Makefile into it, edit the Makefile to contain a proper VPATH |
| 250 | line (and possibly edit the compiler flags set in the Makefile), and |
| 251 | pass the configure script a --with-readline=DIRECTORY option giving it |
| 252 | the absolute (!) pathname of the readline build directory. |
| 253 | |
| 254 | Note that Modules/Makefile copies the original Setup file to the build |
| 255 | directory if it finds no Setup file there. This means that you can |
| 256 | edit the Setup file for each architecture independently. For this |
| 257 | reason, subsequent changes to the original Setup file are not tracked |
| 258 | automatically, as they might overwrite local changes. To force a copy |
| 259 | of a changed original Setup file, delete the target Setup file. (The |
| 260 | makesetup script supports multiple input files, so if you want to be |
| 261 | fancy you can change the rules to create an empty Setup.local if it |
| 262 | doesn't exist and run it with arguments $(srcdir)/Setup Setup.local; |
| 263 | however this assumes that you only need to add modules.) |
| 264 | |
| 265 | |
| 266 | Troubleshooting |
| 267 | --------------- |
| 268 | |
| 269 | Here is a selection from the FAQ on various common problems. |
| 270 | |
| 271 | 3.6. Q. Link errors building Python with STDWIN on SGI IRIX. |
| 272 | |
| 273 | A. Rebuild STDWIN, specifying "CC=cc -cckr" in the Makefile. |
| 274 | |
| 275 | 3.8. Q. Link errors after rerunning the configure script. |
| 276 | |
| 277 | A. It is generally necessary to run "make clean" after a configuration |
| 278 | change. |
| 279 | |
| 280 | 3.9. Q. The python interpreter complains about options passed to a |
| 281 | script (after the script name). |
| 282 | |
| 283 | A. You are probably linking with GNU getopt, e.g. through -liberty. |
| 284 | Don't. (If you are using this because you link with -lreadline, use |
| 285 | the readline distributed with Python instead.) |
| 286 | |
| 287 | 3.10. Q. When building on the SGI, make tries to run python to create |
| 288 | glmodule.c, but python hasn't been built or installed yet. |
| 289 | |
| 290 | A. Comment out the line mentioning glmodule.c in Setup and build a |
| 291 | python without gl first; install it or make sure it is in your $PATH, |
| 292 | then edit the Setup file again to turn on the gl module, and make |
| 293 | again. You don't need to do "make clean"; you do need to run "make |
| 294 | Makefile" in the Modules subdirectory (or just run "make" at the |
| 295 | toplevel). |
| 296 | |
| 297 | 3.13. Q. Other trouble building Python 1.0.2 on platform X. |
| 298 | |
| 299 | A. Please email the details to <guido@cwi.nl> and I'll look into it. |
| 300 | |
| 301 | |
| 302 | Building on non-UNIX systems |
| 303 | ---------------------------- |
| 304 | |
| 305 | On non-UNIX systems, you will have to fake the effect of running the |
| 306 | configure script manually. A good start is to copy the file |
| 307 | config.h.in to config.h and edit the latter to reflect the actual |
| 308 | configuration of your system. Most symbols must simply be defined as |
| 309 | 1 only if the corresponding feature is present and can be left alone |
| 310 | otherwise; however RETSIGTYPE must always be defined, either as int or |
| 311 | as void, and the *_t type symbols must be defined as some variant of |
| 312 | int if they need to be defined at all. Then arrange that the symbol |
| 313 | HAVE_CONFIG_H is defined during compilation (usually by passing an |
| 314 | argument of the form `-DHAVE_CONFIG_H' to the compiler, but this is |
| 315 | necessarily system-dependent). |
| 316 | |
| 317 | |
| 318 | Distribution structure |
| 319 | ---------------------- |
| 320 | |
| 321 | Most subdirectories have their own README file. Most files have |
| 322 | comments. |
| 323 | |
| 324 | ChangeLog A raw list of changes since the first 1.0.0 BETA release |
| 325 | Contrib/ Contributed code |
| 326 | Demo/ Demonstration scripts, modules and programs |
| 327 | Demo2/ Some more demonstrations (not distributed) |
| 328 | Doc/ Documentation (in LaTeX) |
| 329 | Ext-dummy/ Placeholder for Extensions in the distribution |
| 330 | Extensions/ Extension modules (not distributed) |
| 331 | Grammar/ Input for the parser generator |
| 332 | Include/ Public header files |
| 333 | Lib/ Python library modules |
| 334 | Makefile Rules for building the distribution |
| 335 | Misc/ Miscellaneous files |
| 336 | Modules/ Implementation of most built-in modules |
| 337 | Objects/ Implementation of most built-in object types |
| 338 | Parser/ The parser and tokenizer and their input handling |
| 339 | Python/ The "compiler" and interpreter |
| 340 | README The file you're reading now |
| 341 | acconfig.h Additional input for the autoheader program |
| 342 | config.h Configuration header (generated) |
| 343 | config.h.in Source from which config.status creates config.h |
| 344 | config.status status from last run of configure script (generated) |
| 345 | configure Configuration shell script (GNU autoconf output) |
| 346 | configure.in Configuration specification (GNU autoconf input) |
| 347 | tags, TAGS Tags files for vi and Emacs (generated) |
| 348 | python The executable interpreter (generated) |
| 349 | readline/ Source code for the GNU readline library |
| 350 | |
| 351 | |
| 352 | Ftp access |
| 353 | ---------- |
| 354 | |
Guido van Rossum | 03d8f74 | 1994-08-12 12:45:02 +0000 | [diff] [blame] | 355 | The latest Python source distribution can be ftp'ed from |
| 356 | ftp://ftp.cwi.nl/pub/python/python<version>.tar.gz. You can also find |
| 357 | PostScript of the main Python documentation there, Macintosh and PC |
| 358 | binaries, and the latest STDWIN source distribution (in directory |
| 359 | /pub/stdwin). oFr mirror sites, see the list in the FAQ (Misc/FAQ |
| 360 | this directory). |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 361 | |
| 362 | |
Guido van Rossum | 03d8f74 | 1994-08-12 12:45:02 +0000 | [diff] [blame] | 363 | Mailing list and Newsgroup |
| 364 | -------------------------- |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 365 | |
Guido van Rossum | 03d8f74 | 1994-08-12 12:45:02 +0000 | [diff] [blame] | 366 | There are a mailing list and a newsgroup devoted to Python |
| 367 | programming, design and bugs. The newsgroup, comp.lang.python, |
| 368 | contains exactly the same messages as the mailing list. To subscribe |
| 369 | to the mailing list, send mail containing your real name and e-mail |
| 370 | address in Internet form to "python-list-request@cwi.nl". |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 371 | |
| 372 | |
| 373 | Author |
| 374 | ------ |
| 375 | |
| 376 | Guido van Rossum |
| 377 | CWI, dept. CST |
| 378 | P.O. Box 94079 |
| 379 | 1090 GB Amsterdam |
| 380 | The Netherlands |
| 381 | |
| 382 | E-mail: Guido.van.Rossum@cwi.nl |
| 383 | |
| 384 | |
| 385 | Copyright Notice |
| 386 | ---------------- |
| 387 | |
| 388 | The Python source is copyrighted, but you can freely use and copy it |
| 389 | as long as you don't change or remove the copyright: |
| 390 | |
| 391 | Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum, |
| 392 | Amsterdam, The Netherlands. |
| 393 | |
| 394 | All Rights Reserved |
| 395 | |
| 396 | Permission to use, copy, modify, and distribute this software and its |
| 397 | documentation for any purpose and without fee is hereby granted, |
| 398 | provided that the above copyright notice appear in all copies and that |
| 399 | both that copyright notice and this permission notice appear in |
| 400 | supporting documentation, and that the names of Stichting Mathematisch |
| 401 | Centrum or CWI not be used in advertising or publicity pertaining to |
| 402 | distribution of the software without specific, written prior permission. |
| 403 | |
| 404 | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO |
| 405 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 406 | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE |
| 407 | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 408 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 409 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 410 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 411 | |
| 412 | |
| 413 | Signature |
| 414 | --------- |
Guido van Rossum | 627b2d7 | 1993-12-24 10:39:16 +0000 | [diff] [blame] | 415 | |
| 416 | --Guido van Rossum, CWI, Amsterdam <Guido.van.Rossum@cwi.nl> |
| 417 | URL: <http://www.cwi.nl/cwi/people/Guido.van.Rossum.html> |