home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / python / !Python / Misc / README < prev    next >
Encoding:
Text File  |  1996-10-25  |  28.7 KB  |  705 lines

  1. This is Python release 1.4 (final)
  2. ==================================
  3.  
  4. I appreciate everybody's patience...  This is the official, final
  5. release of Python 1.4.  You can throw away your copies of 1.3 and the
  6. 1.4 betas now!
  7.  
  8.  
  9. What's new in this release?
  10. ---------------------------
  11.  
  12. An exhaustive list of (nearly) everything that changed since the
  13. release of Python 1.3, over a year ago, can be found in the file
  14. Misc/NEWS.  (A history of all changes before that time is kept in
  15. Misc/HISTORY.)  An overview of the most important user-visible changes
  16. is appended as a new chapter to the Tutorial (Doc/tut.tex).  Perhaps
  17. the most visible changes are the new power operator, complex numbers,
  18. new slicing and indexing syntax, and class-private names of the form
  19. __spam (an experimental feature).
  20.  
  21.  
  22. What is Python anyway?
  23. ----------------------
  24.  
  25. Python is an interpreted object-oriented programming language, and is
  26. often compared to Tcl, Perl, Scheme or Java.  For a quick summary of
  27. what Python can mean for a UNIX/C programmer, read Misc/BLURB.LUTZ.
  28. If you have web access, point your browser to http://www.python.org.
  29.  
  30.  
  31. How do I learn Python?
  32. ----------------------
  33.  
  34. The official tutorial is still a good place to start (in the Doc
  35. directory as tut.tex; and http://www.python.org/doc/tut/tut.html).
  36. Aaron Watters wrote a second tutorial, that may be more accessible for
  37. some: http://www.wcmh.com/uworld/archives/95/tutorial/005.html.
  38.  
  39. There are now also two books on Python.  While these are still based
  40. on Python 1.3 or 1.4beta2, the language is so stable now that you'd be
  41. hard pressed to find places where the books are out of date.  The
  42. books, both first published in October 1996 and both including a
  43. CD-ROM, form excellent companions to each other:
  44.  
  45.     Internet Programming with Python
  46.     by Aaron Watters, Guido van Rossum, and James Ahlstrom
  47.     MIS Press/Henry Holt publishers
  48.     ISBN: 1-55851-484-8
  49.  
  50.     Programming Python
  51.     by Mark Lutz
  52.     O'Reilly & Associates
  53.     ISBN: 1-56592-197-6
  54.  
  55.  
  56. If you don't read instructions
  57. ------------------------------
  58.  
  59. Congratulations on getting this far. :-)
  60.  
  61. To start building right away (on UNIX): type "./configure" in the
  62. current directory and when it finishes, type "make".  The section
  63. Build Instructions below is still recommended reading. :-)
  64.  
  65.  
  66. Copyright issues
  67. ----------------
  68.  
  69. Python is COPYRIGHTED but free to use for all.  See the full copyright
  70. notice at the end of this file.
  71.  
  72. The Python distribution is *not* affected by the GNU Public Licence
  73. (GPL).  There are interfaces to some GNU code but these are entirely
  74. optional and no GNU code is distributed with Python.  For all these
  75. packages, GPL-free public domain versions also exist.
  76.  
  77.  
  78.  
  79. A modest plug
  80. =============
  81.  
  82. *********************************************************************
  83. * Without your help, I won't be able to continue to support Python! *
  84. *********************************************************************
  85.  
  86. If you use Python, please consider joining the Python Software
  87. Activity (PSA).  See http://www.python.org/psa/.
  88.  
  89. Organizations that make heavy use of Python are especially encouraged
  90. to become corporate members!
  91.  
  92.  
  93. Build instructions
  94. ==================
  95.  
  96. Before you can build Python, you must first configure it.
  97. Fortunately, the configuration and build process has been streamlined
  98. for most Unix installations, so all you have to do is type a few
  99. commands, optionally edit one file, and sit back.  There are some
  100. platforms where things are not quite as smooth; see the platform
  101. specific notes below.  If you want to build for multiple platforms
  102. sharing the same source tree, see the section on VPATH below.
  103.  
  104. You start by running the script "./configure", which figures out your
  105. system configuration and creates several Makefiles.  (It takes a
  106. minute or two -- please be patient!)  When it's done, you are ready to
  107. run make.  You may want to pass options to the configure script -- see
  108. the section below on configuration options and variables.
  109.  
  110. To build Python, you normally type "make" in the toplevel directory.
  111. This will recursively run make in each of the subdirectories Parser,
  112. Objects, Python and Modules, creating a library file in each one.  The
  113. executable of the interpreter is built in the Modules subdirectory and
  114. moved up here when it is built.  If you want or need to, you can also
  115. chdir into each subdirectory in turn and run make there manually (do
  116. the Modules subdirectory last!).
  117.  
  118. Once you have built an interpreter, see the subsections below on
  119. testing, configuring additional modules, and installation.  If you run
  120. in trouble, see the next section.
  121.  
  122.  
  123. Troubleshooting
  124. ---------------
  125.  
  126. See also the platform specific notes in the next section.
  127.  
  128. If recursive makes fail, try invoking make as "make MAKE=make".
  129.  
  130. If you run into other trouble, see section 3 of the FAQ (file
  131. Misc/FAQ) for hints on what can go wrong, and how to fix it.
  132.  
  133. If you rerun the configure script with different options, remove all
  134. object files by running "make clean" before rebuilding.  Believe it or
  135. not, "make clean" sometimes helps to clean up other inexplicable
  136. problems as well.  Try it before sending in a bug report!
  137.  
  138. If the configure script fails or doesn't seem to find things that
  139. should be there, inspect the config.log file.
  140.  
  141.  
  142. Platform specific notes
  143. -----------------------
  144.  
  145. (Some of these may no longer apply.  If you find you can build Python
  146. on these platforms without the special directions mentioned here, let
  147. me know so I can remove them!)
  148.  
  149. Linux:  On Linux version 1.x, once you've built Python, use it to run
  150.     the regen script in the Lib/linux1 directory.  Apparently
  151.     the files as distributed don't match the system headers on
  152.     some Linux versions.  (The "h2py" command refers to
  153.     Tools/scripts/h2py.py.)  The modules distributed for Linux 2.x
  154.     should be okay.  Shared library support now works by default
  155.     on ELF-based x86 Linux systems.
  156.  
  157. AIX:    A complete overhaul of the shared library support is now in
  158.     place.  To enable it, uncomment the LINKCC line in the Setup
  159.     file.  See Misc/AIX-NOTES for some notes on how it's done.
  160.  
  161.     WARNING!  In some versions of AIX 3.x, you get errors about
  162.     Invalid Indent when running the Python test set.  This appears
  163.     to be a bug in the AIX compiler.  Rebuild Parser/tokenizer.c
  164.     using OPT="" or OPT=-g, or use gcc.
  165.  
  166. HP-UX:    Shared library support now works by default (at least on HP-UX
  167.     9.x).  One other problem remains: the HP ANSI C compiler (cc
  168.     -Aa) is too pedantic to use, but in K&R mode, it barfs on a
  169.     few files (complexobject.c, getargs.c and operator.c).  Until
  170.     this is fixed, the following seems to work:
  171.  
  172.         make -k        # this compiles all but a few files
  173.         make OPT=-Aa    # compile the remaining files
  174.  
  175. Minix:  When using ack, use "CC=cc AR=aal RANLIB=: ./configure"!
  176.  
  177. SCO:    1) Everything works much better if you add -U__STDC__ to the
  178.     defs.  This is because all the SCO header files are broken.
  179.     Anything that isn't mentioned in the C standard it's
  180.     conditionally excluded when __STDC__ is defined.
  181.  
  182.     2) Due to the U.S. export restrictions, SCO broke the crypt
  183.     stuff out into a separate library, libcrypt_i.a so the LIBS
  184.     needed be set to:
  185.  
  186.         LIBS=' -lsocket -lcrypt_i'
  187.  
  188.     3) According to at least one report, the above apply only to
  189.     SCO 3 -- Python builds out of the box on SCO 5.
  190.  
  191. SunOS:  On SunOS 4.x, when using the native "cc" compiler, you have to
  192.     disable modules "cmath" and "operator" in Modules/Setup (see
  193.     the next section) and edit the various Makefiles to add
  194.     "-DWITHOUT_COMPLEX" to the CFLAGS variable, in order to
  195.     overcome the limitation to pre-ANSI C.  (Or, of course, you
  196.     could get gcc :-).
  197.  
  198. NeXT:   To build fat binaries, use the --with-next-archs switch
  199.     described below.
  200.  
  201.  
  202. Configuring additional built-in modules
  203. ---------------------------------------
  204.  
  205. You can configure the interpreter to contain fewer or more built-in
  206. modules by editing the file Modules/Setup.  This file is initially
  207. copied (when the toplevel Makefile makes Modules/Makefile for the
  208. first time) from Setup.in; if it does not exist yet, make a copy
  209. yourself.  Never edit Setup.in -- always edit Setup.  Read the
  210. comments in the file for information on what kind of edits you can
  211. make.  When you have edited Setup, Makefile and config.c in Modules
  212. will automatically be rebuilt the next time you run make in the
  213. toplevel directory.  (When working inside the Modules directory, use
  214. "make Makefile; make".)
  215.  
  216. The default collection of modules should build on any Unix system, but
  217. many optional modules should work on all modern Unices (e.g. try dbm,
  218. nis, termios, timing, syslog, curses, new, soundex, parser).  Often
  219. the quickest way to determine whether a particular module works or not
  220. is to see if it will build: enable it in Setup, then if you get
  221. compilation or link errors, disable it -- you're missing support.
  222.  
  223. On SGI IRIX, there are modules that interface to many SGI specific
  224. system libraries, e.g. the GL library and the audio hardware.
  225.  
  226. For SunOS and Solaris, enable module "sunaudiodev" to support the
  227. audio device.
  228.  
  229.  
  230. Setting the optimization/debugging options
  231. ------------------------------------------
  232.  
  233. If you want or need to change the optimization/debugging options for
  234. the C compiler, assign to the OPT variable on the toplevel make
  235. command; e.g. "make OPT=-g" will build a debugging version of Python
  236. on most platforms.  The default is OPT=-O; a value for OPT in the
  237. environment when the configure script is run overrides this default
  238. (likewise for CC; and the initial value for LIBS is used as the base
  239. set of libraries to link with).
  240.  
  241.  
  242. Testing
  243. -------
  244.  
  245. To test the interpreter that you have just built, type "make test".
  246. This runs the test set silently, twice (once with no compiled files,
  247. once with the compiled files left by the previous test run).  Each
  248. test run should print "All tests OK." and nothing more.  (The test set
  249. does not test the built-in modules, but will find most other problems
  250. with the interpreter.)
  251.  
  252. IMPORTANT: If the tests fail and you decide to mail a bug report,
  253. *don't* include the output of "make test".  It is useless.  Run the
  254. following command instead:
  255.  
  256.     PYTHONPATH=../Lib:../Lib/test:./Modules ./python -c 'import testall'
  257.  
  258. (substituting the top of the source tree for .. if you built in a
  259. different directory).  This gives the output of the tests and shows
  260. which test failed.
  261.  
  262.  
  263. Installing
  264. ----------
  265.  
  266. Installing Python was never this easy!
  267.  
  268. To install the Python binary, library modules, shared library modules
  269. (see below), include files, configuration files, and the manual page,
  270. just type "make install".  This will install all platform-independent
  271. files in subdirectories the directory given with the --prefix option
  272. to configure or the 'prefix' Make variable (default /usr/local), and
  273. all binary and other platform-specific files in subdirectories if the
  274. directory given by --exec-prefix or the 'exec_prefix' Make variable
  275. (defaults to the --prefix directory).  All subdirectories created will
  276. have Python's version number in their name, e.g. the library modules
  277. are installed in "/usr/local/lib/python1.4/" by default.  The Python
  278. binary is installed as "python1.4" and a hard link named "python" is
  279. created.  The only file not installed with a version number in its
  280. name is the manual page, installed as "/usr/local/man/man1/python.1"
  281. by default.
  282.  
  283. If you have a previous installation of a pre-1.4 Python that you don't
  284. want to replace yet, use "make altinstall".  This installs the same
  285. set of files as "make install" except it doesn't create the hard link
  286. to "python1.4" named "python" and it doesn't install the manual page
  287. at all.
  288.  
  289. The only thing you may have to install manually is the Python mode for
  290. Emacs.  (But then again, more recent versions of Emacs may already
  291. have it!)  This is the file Misc/python-mode.el; follow the
  292. instructions that came with Emacs for installation of site specific
  293. files.
  294.  
  295.  
  296. Configuration options and variables
  297. -----------------------------------
  298.  
  299. Some special cases are handled by passing options to the configure
  300. script.
  301.  
  302. WARNING: if you rerun the configure script with different options, you
  303. must run "make clean" before rebuilding.  Exceptions to this rule:
  304. after changing --prefix or --exec-prefix, all you need to do is remove
  305. Modules/getpath.o; after changing --with-readline, just remove
  306. Parser/myreadline.o.
  307.  
  308. --with(out)-gcc: The configure script uses gcc (the GNU C compiler) if
  309.     it finds it.  If you don't want this, or if this compiler is
  310.     installed but broken on your platform, pass the option
  311.     --without-gcc.  You can also pass "CC=cc" (or whatever the
  312.     name of the proper C compiler is) in the environment, but the
  313.     advantage of using --without-gcc is that this option is
  314.     remembered by the config.status script for its --recheck
  315.     option.
  316.  
  317. --prefix, --exec-prefix: If you want to install the binaries and the
  318.     Python library somewhere else than in /usr/local/{bin,lib},
  319.     you can pass the option --prefix=DIRECTORY; the interpreter
  320.     binary will be installed as DIRECTORY/bin/python and the
  321.     library files as DIRECTORY/lib/python/*.  If you pass
  322.     --exec-prefix=DIRECTORY (as well) this overrides the
  323.     installation prefix for architecture-dependent files (like the
  324.     interpreter binary).  Note that --prefix=DIRECTORY also
  325.     affects the default module search path (sys.path), when
  326.     Modules/config.c is compiled.  Passing make the option
  327.     prefix=DIRECTORY (and/or exec_prefix=DIRECTORY) overrides the
  328.     prefix set at configuration time; this may be more convenient
  329.     than re-running the configure script if you change your mind
  330.     about the install prefix...
  331.  
  332. --with-readline: You can use the GNU readline library to improve the
  333.     interactive user interface.  This gives you line editing and
  334.     command history when calling Python interactively.  Unless GNU
  335.     readline is a standard part of your system (it is on Linux),
  336.     you need to configure build the GNU readline library before
  337.     running the configure script.  Its sources are not distributed
  338.     with Python; you can ftp them from any GNU mirror site, or
  339.     from its home site:
  340.     ftp://slc2.ins.cwru.edu/pub/dist/readline-2.0.tar.gz (or
  341.     a higher version number -- using version 1.x is not
  342.     recommended).
  343.  
  344.     A GPL-free version was posted to comp.sources.misc in volume
  345.     31 and is widely available from FTP archive sites, e.g.
  346.     ftp://gatekeeper.dec.com/.
  347.  
  348.     Pass the Python configure script the option
  349.     --with-readline=DIRECTORY where DIRECTORY is the absolute
  350.     pathname of the directory where you've built the readline
  351.     library.  If GNU readline is a standard part of your system,
  352.     don't pass '=DIRECTORY'.  Some hints on building and using the
  353.     readline library are in the FAQ (file Misc/FAQ).
  354.  
  355. --with-thread: On most Unix systems, you can now use multiple threads.
  356.     To enable this, pass --with-thread.  If the library required
  357.     for threads lives in a peculiar place, you can use
  358.     --with-thread=DIRECTORY.  In the Modules/Setup file, enable
  359.     the thread module.  (Threads aren't enabled automatically
  360.     because there are run-time penalties when support for them is
  361.     compiled in even if you don't use them.)  IMPORTANT: run "make
  362.     clean" after changing (either enabling or disabling) this
  363.     option!
  364.  
  365. --with-sgi-dl: On SGI IRIX 4, dynamic loading of extension modules is
  366.     supported by the "dl" library by Jack Jansen, which is
  367.     ftp'able from ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
  368.     This is enabled (after you've ftp'ed and compiled the dl
  369.     library!) by passing --with-sgi-dl=DIRECTORY where DIRECTORY
  370.     is the absolute pathname of the dl library.  (Don't bother on
  371.     IRIX 5, it already has dynamic linking using SunOS style
  372.     shared libraries.)  Support for this feature is deprecated.
  373.  
  374. --with-dl-dld: Dynamic loading of modules is rumoured to be supported
  375.     on some other systems: VAX (Ultrix), Sun3 (SunOS 3.4), Sequent
  376.     Symmetry (Dynix), and Atari ST.  This is done using a
  377.     combination of the GNU dynamic loading package
  378.     (ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z) and an
  379.     emulation of the SGI dl library mentioned above (the emulation
  380.     can be found at
  381.     ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z).  To
  382.     enable this, ftp and compile both libraries, then call the
  383.     configure passing it the option
  384.     --with-dl-dld=DL_DIRECTORY,DLD_DIRECTORY where DL_DIRECTORY is
  385.     the absolute pathname of the dl emulation library and
  386.     DLD_DIRECTORY is the absolute pathname of the GNU dld library.
  387.     (Don't bother on SunOS 4 or 5, they already have dynamic
  388.     linking using shared libraries.)  Support for this feature is
  389.     deprecated.
  390.  
  391. --with-libm, --with-libc: It is possible to specify alternative
  392.     versions for the Math library (default -lm) and the C library
  393.     (default the empty string) using the options
  394.     --with-libm=STRING and --with-libc=STRING, respectively.  E.g.
  395.     if your system requires that you pass -lc_s to the C compiler
  396.     to use the shared C library, you can pass --with-libc=-lc_s.
  397.     These libraries are passed after all other libraries, the C
  398.     library last.
  399.     
  400. --with-next-archs='arch1 arch2': Under NEXTSTEP, this will build
  401.     all compiled binaries with the architectures listed.  Includes
  402.     correctly setting the target architecture specific resource
  403.     directory.  (This option is not supported on other platforms.)
  404.  
  405. --with-libs='libs': Add 'libs' to the LIBS that the python
  406.     linked against.
  407.  
  408.  
  409. Building for multiple architectures (using the VPATH feature)
  410. -------------------------------------------------------------
  411.  
  412. If your file system is shared between multiple architectures, it
  413. usually is not necessary to make copies of the sources for each
  414. architecture you want to support.  If the make program supports the
  415. VPATH feature, you can create an empty build directory for each
  416. architecture, and in each directory run the configure script (on the
  417. appropriate machine with the appropriate options).  This creates the
  418. necessary subdirectories and the Makefiles therein.  The Makefiles
  419. contain a line VPATH=... which points to directory containing the
  420. actual sources.  (On SGI systems, use "smake -J1" instead of "make" if
  421. you use VPATH -- don't try gnumake.)
  422.  
  423. For example, the following is all you need to build a minimal Python
  424. in /usr/tmp/python (assuming ~guido/src/python is the toplevel
  425. directory and you want to build in /usr/tmp/python):
  426.  
  427.     $ mkdir /usr/tmp/python
  428.     $ cd /usr/tmp/python
  429.     $ ~guido/src/python/configure
  430.     [...]
  431.     $ make
  432.     [...]
  433.     $
  434.  
  435. Note that Modules/Makefile copies the original Setup file to the build
  436. directory if it finds no Setup file there.  This means that you can
  437. edit the Setup file for each architecture independently.  For this
  438. reason, subsequent changes to the original Setup file are not tracked
  439. automatically, as they might overwrite local changes.  To force a copy
  440. of a changed original Setup file, delete the target Setup file.  (The
  441. makesetup script supports multiple input files, so if you want to be
  442. fancy you can change the rules to create an empty Setup.local if it
  443. doesn't exist and run it with arguments $(srcdir)/Setup Setup.local;
  444. however this assumes that you only need to add modules.)
  445.  
  446.  
  447. Building on non-UNIX systems
  448. ----------------------------
  449.  
  450. Building Python for a PC is now a piece of cake!
  451.  
  452. Enter the directory "PC" and read the file "readme.txt".  Most popular
  453. non-Unix PC platforms and compilers are supported (Unix ports to the
  454. PC such as Linux, FreeBSD or Solaris-x86 of course use the standard
  455. Unix build instructions).
  456.  
  457. For the Mac, a separate source distribution will be made available,
  458. for use with the CodeWarrior compiler.  If you are interested in Mac
  459. development, join the PythonMac Special Interest Group
  460. (http://www.python.org/sigs/pythonmac-sig/, or send email to
  461. pythonmac-sig-request@python.org).
  462.  
  463. Of course, there are also binary distributions available for these
  464. platforms -- see http://www.python.org/python/.
  465.  
  466. To port Python to a new non-UNIX system, you will have to fake the
  467. effect of running the configure script manually (for Mac and PC, this
  468. has already been done for you).  A good start is to copy the file
  469. config.h.in to config.h and edit the latter to reflect the actual
  470. configuration of your system.  Most symbols must simply be defined as
  471. 1 only if the corresponding feature is present and can be left alone
  472. otherwise; however RETSIGTYPE must always be defined, either as int or
  473. as void, and the *_t type symbols must be defined as some variant of
  474. int if they need to be defined at all.
  475.  
  476.  
  477.  
  478. Miscellaneous issues
  479. ====================
  480.  
  481. Documentation
  482. -------------
  483.  
  484. All documentation is provided in the subdirectory Doc in the form of
  485. LaTeX files.  In order of importance for new users: Tutorial (tut),
  486. Library Reference (lib), Language Reference (ref), Extending (ext).
  487. Especially the Library Reference is of immense value since much of
  488. Python's power (including the built-in data types and functions!) is
  489. described here.
  490.  
  491. To print the documentation from the LaTeX files, chdir into the Doc
  492. subdirectory, type "make" (let's hope you have LaTeX installed!), and
  493. send the four resulting PostScript files (tut.ps, lib.ps, ref.ps, and
  494. ext.ps) to the printer.  See the README file there.  If you don't have
  495. LaTeX, you can ftp the PostScript files from the ftp archives (see
  496. below).
  497.  
  498. All documentation is also available on-line via the Python web site
  499. (http://www.python.org/, see below).  It can also be downloaded
  500. separately from the ftp archives (see below) in Emacs INFO, HTML or
  501. PostScript form -- see the web site or the FAQ (file Misc/FAQ) for
  502. more info.
  503.  
  504.  
  505. Emacs mode
  506. ----------
  507.  
  508. There's an excellent Emacs editing mode for Python code; see the file 
  509. Misc/python-mode.el.  Originally written by Tim Peters, it is now 
  510. maintained by Barry Warsaw <bwarsaw@cnri.reston.va.us>.
  511.  
  512.  
  513. Web site
  514. --------
  515.  
  516. Python's own web site has URL http://www.python.org/.  Come visit us!
  517. There are a number of mirrors, listed on the home page -- try a mirror
  518. that's close you you.
  519.  
  520.  
  521. Ftp site
  522. --------
  523.  
  524. Python's own ftp site is ftp.python.org, directory /pub/python.  See
  525. the FAQ (file Misc/FAQ) for a list of other ftp sites carrying the
  526. Python distribution.
  527.  
  528.  
  529. Newsgroup and mailing list
  530. --------------------------
  531.  
  532. There are a newsgroup and a mailing list devoted to Python.  The
  533. newsgroup, comp.lang.python, contains exactly the same messages as the
  534. mailing list (though not always in the same order, due to the
  535. mysterious nature of the Usenet news distribution algorithm).  To
  536. subscribe to the mailing list, send mail containing your real name and
  537. e-mail address to "python-list-request@cwi.nl".  Use the same address
  538. if you want to unsibscribed.  (A real person reads these messages, so
  539. no LISTPROC or Majordomo commands, please, and please be patient --
  540. normal turn-around time is about one working day.)
  541.  
  542. The Python web site contains a search form that lets you search the
  543. newsgroup archives (or the web site itself).  Click on the "search"
  544. link in the banner menu on any page of http://www.python.org/.
  545.  
  546.  
  547. Bug reports
  548. -----------
  549.  
  550. Bugs are best reported to the comp.lang.python newsgroup or the Python
  551. mailing list -- see the section "Newsgroup and mailing list" above.
  552. Before posting, check the newsgroup archives (see above) to see if
  553. your bug has already been reported!
  554.  
  555.  
  556. Questions
  557. ---------
  558.  
  559. For help, if you can't find it in the manuals, the FAQ or on the web
  560. site, it's best to post to the comp.lang.python or the Python mailing
  561. list (see above).  If you specifically don't want to involve the
  562. newsgroup or mailing list, send questions to python-help@python.org.
  563.  
  564.  
  565. The Tk interface
  566. ----------------
  567.  
  568. Tk (the user interface component of John Ousterhout's Tcl language) is
  569. also usable from Python.  Since this requires that you first build and
  570. install Tcl/Tk, the Tk interface is not enabled by default.  It works
  571. with Tcl 7.5 and Tk 4.1 as well as with Tcl 7.4 and Tk 4.0.  I didn't
  572. have the time to test it with Tcl 7.6 and Tk 4.2 yet, but it might
  573. well work.
  574.  
  575. See http://www.sunlabs.com/research/tcl/ for more info on where to get
  576. Tcl/Tk.
  577.  
  578. To enable the Python/Tk interface, once you've built and installed
  579. Tcl/Tk, all you need to do is edit two lines in Modules/Setup; search
  580. for the string "_tkinter".  Uncomment one (normally the first) of the
  581. lines beginning with "#_tkinter" and un-comment the line beginning
  582. with "#TKPATH".  If you have installed Tcl/Tk or X11 in unusual
  583. places, you will have to edit the first line to fix or add -I and -L
  584. options.  See the Build Instructions above for more details.
  585.  
  586. There is little documentation on how to use Tkinter; however most of
  587. the Tk manual pages apply quite straightforwardly.  Begin with
  588. fetching the "Tk Lifesaver" document,
  589. e.g. ftp://ftp.python.org/pub/python/doc/tkinter-doc.tar.gz (a gzipped
  590. tar file containing a PostScript file) or the on-line version
  591. http://www.python.org/doc/life-preserver/index.html.  Reading the
  592. Tkinter.py source will reveal most details on how Tkinter calls are
  593. translated into Tcl code.
  594.  
  595. There are demos in the Demo/tkinter directory, in the subdirectories
  596. guido, matt and www (the matt and guido subdirectories have been
  597. overhauled to use more recent Tkinter coding conventions).
  598.  
  599. Note that there's a Python module called "Tkinter" (capital T) which
  600. lives in Lib/tkinter/Tkinter.py, and a C module called "_tkinter"
  601. (lower case t and leading underscore) which lives in
  602. Modules/_tkinter.c.  Demos and normal Tk applications only import the
  603. Python Tkinter module -- only the latter uses the C _tkinter module
  604. directly.  In order to find the C _tkinter module, it must be compiled
  605. and linked into the Python interpreter -- the _tkinter line in the
  606. Setup file does this.  In order to find the Python Tkinter module,
  607. sys.path must be set correctly -- the TKPATH assignment in the Setup
  608. file takes care of this, but only if you install Python properly
  609. ("make install libinstall").  (You can also use dynamic loading for
  610. the C _tkinter module, in which case you must manually fix up sys.path
  611. or set $PYTHONPATH for the Python Tkinter module.)
  612.  
  613.  
  614. Distribution structure
  615. ----------------------
  616.  
  617. Most subdirectories have their own README file.  Most files have
  618. comments.
  619.  
  620. BUGS            A list of known bugs (not completely up-to-date)
  621. Demo/           Demonstration scripts, modules and programs
  622. Doc/            Documentation (LaTeX sources)
  623. Grammar/        Input for the parser generator
  624. Include/        Public header files
  625. Lib/            Python library modules
  626. Makefile.in     Source from which config.status creates Makefile
  627. Misc/           Miscellaneous files
  628. Modules/        Implementation of most built-in modules
  629. Objects/        Implementation of most built-in object types
  630. PC/             PC porting files (DOS, Windows, NT, OS/2)
  631. Parser/         The parser and tokenizer and their input handling
  632. Python/         The "compiler" and interpreter
  633. README          The file you're reading now
  634. TODO            A list of things that could be done (not up-to-date)
  635. Tools/          Some useful programs written in Python
  636. acconfig.h      Additional input for the autoheader program
  637. config.h.in     Source from which config.status creates config.h
  638. configure       Configuration shell script (GNU autoconf output)
  639. configure.in    Configuration specification (GNU autoconf input)
  640. install-sh      Shell script used to install files
  641.  
  642. The following files will (may) be created in the toplevel directory by
  643. the configuration and build processes:
  644.  
  645. Makefile        Build rules
  646. config.cache    cache of configuration variables
  647. config.h        Configuration header
  648. config.log      log from last configure run
  649. config.status   status from last run of configure script
  650. python          The executable interpreter
  651. tags, TAGS      Tags files for vi and Emacs
  652.  
  653.  
  654. Author's address
  655. ================
  656.  
  657. Guido van Rossum
  658. CNRI
  659. 1895 Preston White Drive
  660. Reston, VA 20191
  661. USA
  662.  
  663. E-mail: guido@cnri.reston.va.us or guido@python.org
  664.  
  665.  
  666.  
  667. Copyright notice
  668. ================
  669.  
  670. The Python source is copyrighted, but you can freely use and copy it
  671. as long as you don't change or remove the copyright notice:
  672.  
  673. ----------------------------------------------------------------------
  674. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  675. The Netherlands.
  676.  
  677.                         All Rights Reserved
  678.  
  679. Permission to use, copy, modify, and distribute this software and its
  680. documentation for any purpose and without fee is hereby granted,
  681. provided that the above copyright notice appear in all copies and that
  682. both that copyright notice and this permission notice appear in
  683. supporting documentation, and that the names of Stichting Mathematisch
  684. Centrum or CWI or Corporation for National Research Initiatives or
  685. CNRI not be used in advertising or publicity pertaining to
  686. distribution of the software without specific, written prior
  687. permission.
  688.  
  689. While CWI is the initial source for this software, a modified version
  690. is made available by the Corporation for National Research Initiatives
  691. (CNRI) at the Internet address ftp://ftp.python.org.
  692.  
  693. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  694. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  695. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  696. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  697. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  698. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  699. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  700. PERFORMANCE OF THIS SOFTWARE.
  701. ----------------------------------------------------------------------
  702.  
  703.  
  704. --Guido van Rossum (home page: http://www.python.org/~guido/)
  705.