Changeset 86
- Timestamp:
- Fri Sep 16 10:08:34 2005
- Files:
-
- trunk/doc/source/Tutorial.rst (modified) (diff)
- trunk/doc/stylesheets/default.css (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
trunk/doc/source/Tutorial.rst
r82 r86 570 570 571 571 572 scripts572 ``scripts`` 572 572 a list of scripts specified as file names. 573 573 574 pathex574 ``pathex`` 574 574 an optional list of paths to be searched before sys.path. 575 575 576 hookspath576 ``hookspath`` 576 576 an optional list of paths used to extend the hooks package. 577 577 578 excludes578 ``excludes`` 578 578 an optional list of module or package names (their Python names, not path 579 579 names) that will be ignored (as though they were not found). … … 585 585 An Analysis has three outputs, all ``TOCs`` accessed as attributes of the ``Analysis``. 586 586 587 scripts587 ``scripts`` 587 587 The scripts you gave Analysis as input, with any runtime hook scripts 588 588 prepended. 589 589 590 pure590 ``pure`` 590 590 The pure Python modules. 591 591 592 binaries592 ``binaries`` 592 592 The extension modules and their dependencies. The secondary dependencies are 593 593 filtered. On Windows, a long list of MS dlls are excluded. On Linux/Unix, … … 607 607 608 608 609 toc609 ``toc`` 609 609 a ``TOC``, normally an ``Analysis.pure``. 610 610 611 name611 ``name`` 611 611 A filename for the ``.pyz``. Normally not needed, as the generated name will do fine. 612 612 613 level613 ``level`` 613 613 The Zlib compression level to use. If 0, the zlib module is not required. 614 614 … … 631 631 632 632 633 toc 634 a TOC 633 ``toc`` 634 a ``TOC``. 635 635 636 name636 ``name`` 636 636 a filename for the ``PKG`` (optional). 637 637 638 cdict638 ``cdict`` 638 638 a dictionary that specifies compression by typecode. For example, ``PYZ`` is 639 639 left uncompressed so that it can be accessed inside the ``PKG``. The default 640 640 uses sensible values. If zlib is not available, no compression is used. 641 641 642 exclude_binaries642 ``exclude_binaries`` 642 642 If 1, ``EXTENSIONs`` and ``BINARYs`` will be left out of the ``PKG``, and 643 643 forwarded to its container (usually a ``COLLECT``). … … 656 656 657 657 658 args658 ``args`` 658 658 One or more arguments which are either ``TOCs`` or ``Targets``. 659 659 660 kws660 ``kws`` 660 660 Possible keyword arguments: 661 661 662 console662 ``console`` 662 662 Always 1 on Linux/unix. On Windows, governs whether to use the console 663 663 executable, or the Windows subsystem executable. 664 664 665 debug665 ``debug`` 665 665 Setting to 1 gives you progress messages from the executable (for a 666 666 ``console=0``, these will be annoying MessageBoxes). 667 667 668 name668 ``name`` 668 668 The filename for the executable. 669 669 670 exclude_binaries670 ``exclude_binaries`` 670 670 Forwarded to the ``PKG`` the ``EXE`` builds. 671 671 672 icon672 ``icon`` 672 672 Windows NT family only. ``icon='myicon.ico'`` to use an icon file, or 673 673 ``icon='notepad.exe,0'`` to grab an icon resource. 674 674 675 version675 ``version`` 675 675 Windows NT family only. ``version='myversion.txt'``. Use ``GrabVersion.py`` to 676 676 steal a version resource from an executable, and then edit the ouput to … … 715 715 716 716 717 args717 ``args`` 717 717 One or more arguments which are either ``TOCs`` or ``Targets``. 718 718 719 kws719 ``kws`` 719 719 Possible keyword arguments: 720 721 name 720 721 ``name`` 722 722 The name of the directory to be built. 723 723 … … 734 734 735 735 736 root736 ``root`` 736 736 The root of the tree (on the build system). 737 737 738 prefix738 ``prefix`` 738 738 Optional prefix to the names on the target system. 739 739 740 excludes740 ``excludes`` 740 740 A list of names to exclude. Two forms are allowed: 741 741 742 name742 ``name`` 742 742 files with this basename will be excluded (do not include the path). 743 743 744 \*.ext744 ``*.ext`` 744 744 any file with the given extension will be excluded. 745 745 -
trunk/doc/stylesheets/default.css
r85 r86 56 56 57 57 dt { 58 font-family: monospace;59 58 white-space: nowrap; 60 font-size: larger;61 59 font-weight: bold; 62 60 }
