[Python-checkins] r69861 - in python/trunk/Doc/distutils: setupscript.rst sourcedist.rst

tarek.ziade python-checkins at python.org
Sun Feb 22 01:07:45 CET 2009


Author: tarek.ziade
Date: Sun Feb 22 01:07:45 2009
New Revision: 69861

Log:
using versionchanged instead of versionadded for distutils doc on sdist default files

Modified:
   python/trunk/Doc/distutils/setupscript.rst
   python/trunk/Doc/distutils/sourcedist.rst

Modified: python/trunk/Doc/distutils/setupscript.rst
==============================================================================
--- python/trunk/Doc/distutils/setupscript.rst	(original)
+++ python/trunk/Doc/distutils/setupscript.rst	Sun Feb 22 01:07:45 2009
@@ -450,10 +450,9 @@
          scripts=['scripts/xmlproc_parse', 'scripts/xmlproc_val']
          )
 
-All the scripts will also be added to the ``MANIFEST``
-file if no template is provided. See :ref:`manifest`.
-
-.. versionadded:: 2.7
+.. versionchanged:: 2.7
+  All the scripts will also be added to the ``MANIFEST``
+  file if no template is provided. See :ref:`manifest`.
 
 .. _distutils-installing-package-data:
 
@@ -499,10 +498,10 @@
 
 .. versionadded:: 2.4
 
-All the files that match ``package_data`` will be added to the ``MANIFEST``
-file if no template is provided. See :ref:`manifest`.
+.. versionchanged:: 2.7
+  All the files that match ``package_data`` will be added to the ``MANIFEST``
+  file if no template is provided. See :ref:`manifest`.
 
-.. versionadded:: 2.7
 
 .. _distutils-additional-files:
 
@@ -540,10 +539,10 @@
 files directly in the target directory, an empty string should be given as the
 directory.
 
-All the files that match ``data_files`` will be added to the ``MANIFEST``
-file if no template is provided. See :ref:`manifest`.
+.. versionchanged:: 2.7
+  All the files that match ``data_files`` will be added to the ``MANIFEST``
+  file if no template is provided. See :ref:`manifest`.
 
-.. versionadded:: 2.7
 
 
 .. _meta-data:

Modified: python/trunk/Doc/distutils/sourcedist.rst
==============================================================================
--- python/trunk/Doc/distutils/sourcedist.rst	(original)
+++ python/trunk/Doc/distutils/sourcedist.rst	Sun Feb 22 01:07:45 2009
@@ -87,14 +87,9 @@
 * all files that matches the ``package_data`` metadata.
   See :ref:`distutils-installing-package-data`.
 
-  .. versionadded:: 2.7
-
 * all files that matches the ``data_files`` metadata.
   See :ref:`distutils-additional-files`.
 
-  .. versionadded:: 2.7
-
-
 Sometimes this is enough, but usually you will want to specify additional files
 to distribute.  The typical way to do this is to write a *manifest template*,
 called :file:`MANIFEST.in` by default.  The manifest template is just a list of


More information about the Python-checkins mailing list