diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 22:37:55 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 22:37:55 (GMT) |
commit | b2e36f1df7cbc06134464bfcc1e48936e80e91fa (patch) | |
tree | b378116a4b453fd0044baabf0b14f39b8dab2f19 /Doc/distutils/setupscript.rst | |
parent | a931404804bd2243ae549af5e102860a68eb5fca (diff) | |
download | cpython-b2e36f1df7cbc06134464bfcc1e48936e80e91fa.zip cpython-b2e36f1df7cbc06134464bfcc1e48936e80e91fa.tar.gz cpython-b2e36f1df7cbc06134464bfcc1e48936e80e91fa.tar.bz2 |
Merged revisions 70910 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70910 | tarek.ziade | 2009-03-31 17:27:23 -0500 (Tue, 31 Mar 2009) | 1 line
#5583 Added optional Extensions in Distutils
........
Diffstat (limited to 'Doc/distutils/setupscript.rst')
-rw-r--r-- | Doc/distutils/setupscript.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/distutils/setupscript.rst b/Doc/distutils/setupscript.rst index 2e5d8c1..85089d0 100644 --- a/Doc/distutils/setupscript.rst +++ b/Doc/distutils/setupscript.rst @@ -334,6 +334,10 @@ Other options There are still some other options which can be used to handle special cases. +The :option:`optional` option is a boolean; if it is true, that specifies that +a build failure in the extension should not abort the build process, but simply +not install the failing extension. + The :option:`extra_objects` option is a list of object files to be passed to the linker. These files must not have extensions, as the default extension for the compiler is used. |