diff options
author | Greg Ward <gward@python.net> | 2000-04-19 22:34:11 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-04-19 22:34:11 (GMT) |
commit | a021acacfbd0a3300b4f158d925ff1d90d4e1020 (patch) | |
tree | f59270cf213dee9ccbd13b851dc742d627eb40fa /Doc/dist | |
parent | ff9ea480ebff1f9e0bdd6b34a309d74cb85703f3 (diff) | |
download | cpython-a021acacfbd0a3300b4f158d925ff1d90d4e1020.zip cpython-a021acacfbd0a3300b4f158d925ff1d90d4e1020.tar.gz cpython-a021acacfbd0a3300b4f158d925ff1d90d4e1020.tar.bz2 |
Changed '\option' to '\longprogramopt' wherever it referred to a command-line
option.
Diffstat (limited to 'Doc/dist')
-rw-r--r-- | Doc/dist/dist.tex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/dist/dist.tex b/Doc/dist/dist.tex index 1f22bd6..c741944 100644 --- a/Doc/dist/dist.tex +++ b/Doc/dist/dist.tex @@ -356,7 +356,7 @@ default format for the current platform. The default formats are: \lineii{Unix}{gzipped tar file (\file{.tar.gz})} \lineii{Windows}{zip file} \end{tableii} -You can specify as many formats as you like using the \option{--formats} +You can specify as many formats as you like using the \longprogramopt{formats} option, for example: \begin{verbatim} python setup.py sdist --formats=gztar,zip @@ -486,10 +486,10 @@ source distribution: \begin{verbatim} python setup.py sdist --manifest-only \end{verbatim} -(\option{--manifest-only} implies \option{--force-manifest}.) +(\longprogramopt{manifest-only} implies \longprogramopt{force-manifest}.) If you don't want to use the default file set, you can supply the -\option{--no-defaults} option. If you use \option{--no-defaults} and +\longprogramopt{no-defaults} option. If you use \longprogramopt{no-defaults} and don't supply a manifest template (or it's empty, or nothing matches the patterns in it), then your source distribution will be empty. @@ -547,7 +547,7 @@ between someone being able to use your extensions or not. \XXX{filenames are inaccurate here!} -The \command{bdist} command has a \option{--format} option, similar to +The \command{bdist} command has a \longprogramopt{format} option, similar to the \command{sdist} command, that you can use to select which formats to generate: for example, \begin{verbatim} @@ -580,7 +580,7 @@ The available formats for built distributions are: \end{description} You don't have to use the \command{bdist} command with the -\option{--formats} option; you can also use the command that directly +\longprogramopt{formats} option; you can also use the command that directly implements the format you're interested in. Many of these \command{bdist} ``sub-commands'' actually generate several similar formats; for instance, the \command{bdist\_dumb} command generates all |