Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Doc/distutils/commandref.rst

    r2 r391  
    4949
    5050
    51 .. _sdist-cmd:
    52 
    53 Creating a source distribution: the :command:`sdist` command
    54 ============================================================
    55 
    56 **\*\*** fragment moved down from above: needs context! **\*\***
    57 
    58 The manifest template commands are:
    59 
    60 +-------------------------------------------+-----------------------------------------------+
    61 | Command                                   | Description                                   |
    62 +===========================================+===============================================+
    63 | :command:`include pat1 pat2 ...`          | include all files matching any of the listed  |
    64 |                                           | patterns                                      |
    65 +-------------------------------------------+-----------------------------------------------+
    66 | :command:`exclude pat1 pat2 ...`          | exclude all files matching any of the listed  |
    67 |                                           | patterns                                      |
    68 +-------------------------------------------+-----------------------------------------------+
    69 | :command:`recursive-include dir pat1 pat2 | include all files under *dir* matching any of |
    70 | ...`                                      | the listed patterns                           |
    71 +-------------------------------------------+-----------------------------------------------+
    72 | :command:`recursive-exclude dir pat1 pat2 | exclude all files under *dir* matching any of |
    73 | ...`                                      | the listed patterns                           |
    74 +-------------------------------------------+-----------------------------------------------+
    75 | :command:`global-include pat1 pat2 ...`   | include all files anywhere in the source tree |
    76 |                                           | matching --- & any of the listed patterns     |
    77 +-------------------------------------------+-----------------------------------------------+
    78 | :command:`global-exclude pat1 pat2 ...`   | exclude all files anywhere in the source tree |
    79 |                                           | matching --- & any of the listed patterns     |
    80 +-------------------------------------------+-----------------------------------------------+
    81 | :command:`prune dir`                      | exclude all files under *dir*                 |
    82 +-------------------------------------------+-----------------------------------------------+
    83 | :command:`graft dir`                      | include all files under *dir*                 |
    84 +-------------------------------------------+-----------------------------------------------+
    85 
    86 The patterns here are Unix-style "glob" patterns: ``*`` matches any sequence of
    87 regular filename characters, ``?`` matches any single regular filename
    88 character, and ``[range]`` matches any of the characters in *range* (e.g.,
    89 ``a-z``, ``a-zA-Z``, ``a-f0-9_.``).  The definition of "regular filename
    90 character" is platform-specific: on Unix it is anything except slash; on Windows
    91 anything except backslash or colon.
    92 
    93 **\*\*** Windows support not there yet **\*\***
    94 
    9551.. % \section{Creating a built distribution: the
    9652.. % \protect\command{bdist} command family}
Note: See TracChangeset for help on using the changeset viewer.