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 | cf13c866b15961f29afc2a313ac60c94ee0f59ea (patch) | |
tree | 4a3547a64adad9f1061c445a41f8de7e85ed9aee /Doc | |
parent | 5c2f1f6bfdbb4af3a9837832942fb01470262eb8 (diff) | |
download | cpython-cf13c866b15961f29afc2a313ac60c94ee0f59ea.zip cpython-cf13c866b15961f29afc2a313ac60c94ee0f59ea.tar.gz cpython-cf13c866b15961f29afc2a313ac60c94ee0f59ea.tar.bz2 |
Document the "optional" argument of distutils’ Extension class
Diffstat (limited to 'Doc')
-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 30829b8..eae9078 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 |