#5158: added documentation on the depends option in distutils extensions

This commit is contained in:
Tarek Ziadé 2009-02-13 09:12:33 +00:00
parent 5b2cb1d56e
commit e6aeba7444
2 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,7 @@ docs@python.org), and we'll be glad to correct the problem.
* Oliver Andrich
* Heidi Annexstad
* Jesús Cea Avión
* Manuel Balsera
* Daniel Barclay
* Chris Barker
* Don Bashford

View File

@ -347,6 +347,10 @@ symbols (functions or variables) to be exported. This option is not needed when
building compiled extensions: Distutils will automatically add ``initmodule``
to the list of exported symbols.
The :option:`depends` option is a list of files that the extension depends on
(for example header files). The build command will call the compiler on the
sources to rebuild extension if any on this files has been modified since the
previous build.
Relationships between Distributions and Packages
================================================