changeset 236:bf9579c4b0ee

Add more `since` tags to stuff added in trunk.
author cmlenz
date Wed, 01 Aug 2007 14:15:35 +0000
parents d0cd235ede46
children 1e2f17433085
files babel/messages/checkers.py babel/messages/frontend.py babel/messages/mofile.py
diffstat 3 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/babel/messages/checkers.py
+++ b/babel/messages/checkers.py
@@ -11,7 +11,10 @@
 # individuals. For the exact contribution history, see the revision
 # history and logs, available at http://babel.edgewall.org/log/.
 
-"""Various routines that help with validation of translations."""
+"""Various routines that help with validation of translations.
+
+:since: version 0.9
+"""
 
 from babel.messages.catalog import TranslationError, PYTHON_FORMAT
 
--- a/babel/messages/frontend.py
+++ b/babel/messages/frontend.py
@@ -41,7 +41,7 @@
 from babel.util import odict, LOCALTZ
 
 __all__ = ['CommandLineInterface', 'compile_catalog', 'extract_messages',
-           'init_catalog', 'check_message_extractors']
+           'init_catalog', 'check_message_extractors', 'update_catalog']
 __docformat__ = 'restructuredtext en'
 
 
@@ -59,6 +59,7 @@
             cmdclass = {'compile_catalog': compile_catalog}
         )
 
+    :since: version 0.9
     :see: `Integrating new distutils commands <http://docs.python.org/dist/node32.html>`_
     :see: `setuptools <http://peak.telecommunity.com/DevCenter/setuptools>`_
     """
@@ -458,6 +459,7 @@
             cmdclass = {'update_catalog': update_catalog}
         )
 
+    :since: version 0.9
     :see: `Integrating new distutils commands <http://docs.python.org/dist/node32.html>`_
     :see: `setuptools <http://peak.telecommunity.com/DevCenter/setuptools>`_
     """
@@ -654,6 +656,7 @@
         """Subcommand for compiling a message catalog to a MO file.
 
         :param argv: the command arguments
+        :since: version 0.9
         """
         parser = OptionParser(usage=self.usage % ('compile', ''),
                               description=self.commands['compile'])
@@ -953,6 +956,7 @@
         """Subcommand for updating existing message catalogs from a template.
 
         :param argv: the command arguments
+        :since: version 0.9
         """
         parser = OptionParser(usage=self.usage % ('update', ''),
                               description=self.commands['update'])
--- a/babel/messages/mofile.py
+++ b/babel/messages/mofile.py
@@ -13,6 +13,7 @@
 
 """Writing of files in the ``gettext`` MO (machine object) format.
 
+:since: version 0.9
 :see: `The Format of MO Files
        <http://www.gnu.org/software/gettext/manual/gettext.html#MO-Files>`_
 """
Copyright (C) 2012-2017 Edgewall Software