diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-25 22:45:18 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-25 22:45:18 (GMT) |
commit | 77443824f5ca8dea420e678668f55a6c73c27216 (patch) | |
tree | 0b7f35389b9730f6955f57dc4d92e5ab85cfdf2f /Doc/distutils | |
parent | 3f5e958a3f88653face8ae23932714dc41ceb9bb (diff) | |
download | cpython-77443824f5ca8dea420e678668f55a6c73c27216.zip cpython-77443824f5ca8dea420e678668f55a6c73c27216.tar.gz cpython-77443824f5ca8dea420e678668f55a6c73c27216.tar.bz2 |
Document the "optional" argument of distutils’ Extension class
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 351f2b5..4c849a9 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -261,6 +261,11 @@ the full reference. | | from the source extensions if | | | | not provided. | | +------------------------+--------------------------------+---------------------------+ + | *optional* | specifies that a build failure | a boolean | + | | in the extension should not | | + | | abort the build process, but | | + | | simply skip the extension. | | + +------------------------+--------------------------------+---------------------------+ .. class:: Distribution |