summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-02-13 09:15:20 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-02-13 09:15:20 (GMT)
commit76cb7edc80cd02950db94384a2a026cf86da4727 (patch)
tree0b130f3c8f4b1c2b45b5bac9fcba3308e6ae0d38
parentbc94c802b9ba53b449171c5f786f60b6beaf02e6 (diff)
downloadcpython-76cb7edc80cd02950db94384a2a026cf86da4727.zip
cpython-76cb7edc80cd02950db94384a2a026cf86da4727.tar.gz
cpython-76cb7edc80cd02950db94384a2a026cf86da4727.tar.bz2
Merged revisions 69566 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r69566 | tarek.ziade | 2009-02-13 10:12:33 +0100 (Fri, 13 Feb 2009) | 1 line #5158: added documentation on the depends option in distutils extensions ........
-rw-r--r--Doc/ACKS.txt1
-rw-r--r--Doc/distutils/setupscript.rst4
2 files changed, 5 insertions, 0 deletions
diff --git a/Doc/ACKS.txt b/Doc/ACKS.txt
index 775798b..80bd4c1 100644
--- a/Doc/ACKS.txt
+++ b/Doc/ACKS.txt
@@ -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
diff --git a/Doc/distutils/setupscript.rst b/Doc/distutils/setupscript.rst
index 666b7d6..9ae2e4d 100644
--- a/Doc/distutils/setupscript.rst
+++ b/Doc/distutils/setupscript.rst
@@ -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
================================================