# HG changeset patch # User cmlenz # Date 1185977735 0 # Node ID ada322f472ca8a7aeb4dc7f43390890bcc54ba9e # Parent bc22f5aef216bead7f6bef5d146f954acc44dad6 Add more `since` tags to stuff added in trunk. diff --git a/babel/messages/checkers.py b/babel/messages/checkers.py --- 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 diff --git a/babel/messages/frontend.py b/babel/messages/frontend.py --- 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 `_ :see: `setuptools `_ """ @@ -458,6 +459,7 @@ cmdclass = {'update_catalog': update_catalog} ) + :since: version 0.9 :see: `Integrating new distutils commands `_ :see: `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']) diff --git a/babel/messages/mofile.py b/babel/messages/mofile.py --- 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 `_ """