diff options
author | Éric Araujo <merwok@netwok.org> | 2011-05-28 22:22:06 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-05-28 22:22:06 (GMT) |
commit | 456ae893d7a0b40a5346cbba7771127aca2113e9 (patch) | |
tree | 701d45c07e80014c2cfb7f1e2b9a2d0466ed6f46 /Doc | |
parent | 000893fab2c03c8947c9c34422e44086d88c9120 (diff) | |
download | cpython-456ae893d7a0b40a5346cbba7771127aca2113e9.zip cpython-456ae893d7a0b40a5346cbba7771127aca2113e9.tar.gz cpython-456ae893d7a0b40a5346cbba7771127aca2113e9.tar.bz2 |
Re-add missing doc stub for the distutils check command
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/distutils/apiref.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 74446bc..712fffb 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -2006,3 +2006,17 @@ The ``register`` command registers the package with the Python Package Index. This is described in more detail in :pep:`301`. .. % todo + + +:mod:`distutils.command.check` --- Check the meta-data of a package +=================================================================== + +.. module:: distutils.command.check + :synopsis: Check the metadata of a package + + +The ``check`` command performs some tests on the meta-data of a package. +For example, it verifies that all required meta-data are provided as +the arguments passed to the :func:`setup` function. + +.. % todo |